application_run3.txt 695 B

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