12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- <?xml version="1.0" encoding="UTF-8"?>
- <symfony>
- <commands>
- <command id="help" name="help">
- <usage>help [--xml] [command_name]</usage>
- <description>Displays help for a command</description>
- <help>The <info>help</info> command displays help for a given command:
-
- <info>php app/console help list</info>
-
- You can also output the help as XML by using the <comment>--xml</comment> option:
-
- <info>php app/console help --xml list</info></help>
- <aliases />
- <arguments>
- <argument name="command_name" is_required="0" is_array="0">
- <description>The command name</description>
- <defaults>
- <default>help</default>
- </defaults>
- </argument>
- </arguments>
- <options>
- <option name="--xml" shortcut="" accept_value="0" is_value_required="0" is_multiple="0">
- <description>To output help as XML</description>
- </option>
- </options>
- </command>
- <command id="list" name="list">
- <usage>list [--xml] [namespace]</usage>
- <description>Lists commands</description>
- <help>The <info>list</info> command lists all commands:
-
- <info>php app/console list</info>
-
- You can also display the commands for a specific namespace:
-
- <info>php app/console list test</info>
-
- You can also output the information as XML by using the <comment>--xml</comment> option:
-
- <info>php app/console list --xml</info></help>
- <aliases/>
- <arguments>
- <argument name="namespace" is_required="0" is_array="0">
- <description>The namespace name</description>
- <defaults/>
- </argument>
- </arguments>
- <options>
- <option name="--xml" shortcut="" accept_value="0" is_value_required="0" is_multiple="0">
- <description>To output help as XML</description>
- </option>
- </options>
- </command>
- <command id="foo:bar" name="foo:bar">
- <usage>foo:bar</usage>
- <description>The foo:bar command</description>
- <help/>
- <aliases>
- <alias>afoobar</alias>
- </aliases>
- <arguments/>
- <options/>
- </command>
- </commands>
- <namespaces>
- <namespace id="_global">
- <command>help</command>
- <command>list</command>
- </namespace>
- <namespace id="foo">
- <command>foo:bar</command>
- </namespace>
- </namespaces>
- </symfony>
|