application_run3.txt 665 B

123456789101112131415161718192021222324252627
  1. Usage:
  2. list [options] [--] [<namespace>]
  3. Arguments:
  4. namespace The namespace name
  5. Options:
  6. --raw To output raw command list
  7. --format=FORMAT The output format (txt, xml, json, or md) [default: "txt"]
  8. Help:
  9. The list command lists all commands:
  10. php app/console list
  11. You can also display the commands for a specific namespace:
  12. php app/console list test
  13. You can also output the information in other formats by using the --format option:
  14. php app/console list --format=xml
  15. It's also possible to get raw list of commands (useful for embedding command runner):
  16. php app/console list --raw