Usage:
list [--xml] [--raw] [namespace]
Arguments:
namespace The namespace name
Options:
--xml To output help as XML
--raw To output raw command list
Help:
The list command lists all commands:
php app/console list
You can also display the commands for a specific namespace:
php app/console list test
You can also output the information as XML by using the --xml option:
php app/console list --xml
It's also possible to get raw list of commands (useful for embedding command runner):
php app/console list --raw
|