diff options
author | Frederic Guillot <fred@kanboard.net> | 2017-10-25 16:22:10 -0700 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2017-10-25 16:22:10 -0700 |
commit | 9e2b2a32fd0e967ad3184e9a5d091a29953acb91 (patch) | |
tree | 00822e24aa1110c73ca455a8d096ef296c008cbc /vendor/symfony/console/Tests/Fixtures/application_1.xml | |
parent | c507c5416251c505cb3e088a03c6664bed73c812 (diff) |
Include composer dependencies in repo
Diffstat (limited to 'vendor/symfony/console/Tests/Fixtures/application_1.xml')
-rw-r--r-- | vendor/symfony/console/Tests/Fixtures/application_1.xml | 110 |
1 files changed, 110 insertions, 0 deletions
diff --git a/vendor/symfony/console/Tests/Fixtures/application_1.xml b/vendor/symfony/console/Tests/Fixtures/application_1.xml new file mode 100644 index 00000000..35d1db4d --- /dev/null +++ b/vendor/symfony/console/Tests/Fixtures/application_1.xml @@ -0,0 +1,110 @@ +<?xml version="1.0" encoding="UTF-8"?> +<symfony> + <commands> + <command id="help" name="help"> + <usages> + <usage>help [--xml] [--format FORMAT] [--raw] [--] [<command_name>]</usage> + </usages> + <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 in other formats by using the <comment>--format</comment> option: + + <info>php app/console help --format=xml list</info> + + To display the list of available commands, please use the <info>list</info> command.</help> + <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> + <option name="--format" shortcut="" accept_value="1" is_value_required="1" is_multiple="0"> + <description>The output format (txt, xml, json, or md)</description> + <defaults> + <default>txt</default> + </defaults> + </option> + <option name="--raw" shortcut="" accept_value="0" is_value_required="0" is_multiple="0"> + <description>To output raw command help</description> + </option> + <option name="--help" shortcut="-h" accept_value="0" is_value_required="0" is_multiple="0"> + <description>Display this help message</description> + </option> + <option name="--quiet" shortcut="-q" accept_value="0" is_value_required="0" is_multiple="0"> + <description>Do not output any message</description> + </option> + <option name="--verbose" shortcut="-v" shortcuts="-v|-vv|-vvv" accept_value="0" is_value_required="0" is_multiple="0"> + <description>Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug</description> + </option> + <option name="--version" shortcut="-V" accept_value="0" is_value_required="0" is_multiple="0"> + <description>Display this application version</description> + </option> + <option name="--ansi" shortcut="" accept_value="0" is_value_required="0" is_multiple="0"> + <description>Force ANSI output</description> + </option> + <option name="--no-ansi" shortcut="" accept_value="0" is_value_required="0" is_multiple="0"> + <description>Disable ANSI output</description> + </option> + <option name="--no-interaction" shortcut="-n" accept_value="0" is_value_required="0" is_multiple="0"> + <description>Do not ask any interactive question</description> + </option> + </options> + </command> + <command id="list" name="list"> + <usages> + <usage>list [--xml] [--raw] [--format FORMAT] [--] [<namespace>]</usage> + </usages> + <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 in other formats by using the <comment>--format</comment> option: + + <info>php app/console list --format=xml</info> + + It's also possible to get raw list of commands (useful for embedding command runner): + + <info>php app/console list --raw</info></help> + <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 list as XML</description> + </option> + <option name="--raw" shortcut="" accept_value="0" is_value_required="0" is_multiple="0"> + <description>To output raw command list</description> + </option> + <option name="--format" shortcut="" accept_value="1" is_value_required="1" is_multiple="0"> + <description>The output format (txt, xml, json, or md)</description> + <defaults> + <default>txt</default> + </defaults> + </option> + </options> + </command> + </commands> + <namespaces> + <namespace id="_global"> + <command>help</command> + <command>list</command> + </namespace> + </namespaces> +</symfony> |