Displays help for a command
help [--format FORMAT] [--raw] [--] [<command_name>]
The help command displays help for a given command:
php app/console help list
You can also output the help in other formats by using the --format option:
php app/console help --format=xml list
To display the list of available commands, please use the list command.
The command name
'help'
The output format (txt, xml, json, or md)
'txt'
To output raw command help
false
Display this help message
false
Do not output any message
false
Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug
false
Display this application version
false
Force ANSI output
false
Disable ANSI output
false
Do not ask any interactive question
false
Lists commands
list [--raw] [--format FORMAT] [--] [<namespace>]
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 in other formats by using the --format option:
php app/console list --format=xml
It's also possible to get raw list of commands (useful for embedding command runner):
php app/console list --raw
The namespace name
NULL
To output raw command list
false
The output format (txt, xml, json, or md)
'txt'