diff options
Diffstat (limited to 'Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures')
97 files changed, 2105 insertions, 0 deletions
diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/BarBucCommand.php b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/BarBucCommand.php new file mode 100644 index 0000000..52b619e --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/BarBucCommand.php @@ -0,0 +1,11 @@ +<?php + +use Symfony\Component\Console\Command\Command; + +class BarBucCommand extends Command +{ + protected function configure() + { + $this->setName('bar:buc'); + } +} diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/DescriptorApplication1.php b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/DescriptorApplication1.php new file mode 100644 index 0000000..132b6d5 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/DescriptorApplication1.php @@ -0,0 +1,18 @@ +<?php + +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Symfony\Component\Console\Tests\Fixtures; + +use Symfony\Component\Console\Application; + +class DescriptorApplication1 extends Application +{ +} diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/DescriptorApplication2.php b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/DescriptorApplication2.php new file mode 100644 index 0000000..ff55135 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/DescriptorApplication2.php @@ -0,0 +1,24 @@ +<?php + +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Symfony\Component\Console\Tests\Fixtures; + +use Symfony\Component\Console\Application; + +class DescriptorApplication2 extends Application +{ + public function __construct() + { + parent::__construct('My Symfony application', 'v1.0'); + $this->add(new DescriptorCommand1()); + $this->add(new DescriptorCommand2()); + } +} diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/DescriptorCommand1.php b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/DescriptorCommand1.php new file mode 100644 index 0000000..ede05d7 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/DescriptorCommand1.php @@ -0,0 +1,27 @@ +<?php + +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Symfony\Component\Console\Tests\Fixtures; + +use Symfony\Component\Console\Command\Command; + +class DescriptorCommand1 extends Command +{ + protected function configure() + { + $this + ->setName('descriptor:command1') + ->setAliases(array('alias1', 'alias2')) + ->setDescription('command 1 description') + ->setHelp('command 1 help') + ; + } +} diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/DescriptorCommand2.php b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/DescriptorCommand2.php new file mode 100644 index 0000000..bc04ca9 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/DescriptorCommand2.php @@ -0,0 +1,30 @@ +<?php + +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Symfony\Component\Console\Tests\Fixtures; + +use Symfony\Component\Console\Command\Command; +use Symfony\Component\Console\Input\InputArgument; +use Symfony\Component\Console\Input\InputOption; + +class DescriptorCommand2 extends Command +{ + protected function configure() + { + $this + ->setName('descriptor:command2') + ->setDescription('command 2 description') + ->setHelp('command 2 help') + ->addArgument('argument_name', InputArgument::REQUIRED) + ->addOption('option_name', 'o', InputOption::VALUE_NONE) + ; + } +} diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/DummyOutput.php b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/DummyOutput.php new file mode 100644 index 0000000..aef6d22 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/DummyOutput.php @@ -0,0 +1,36 @@ +<?php + +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Symfony\Component\Console\Tests\Fixtures; + +use Symfony\Component\Console\Output\BufferedOutput; + +/** + * Dummy output + * + * @author Kévin Dunglas <dunglas@gmail.com> + */ +class DummyOutput extends BufferedOutput +{ + /** + * @return array + */ + public function getLogs() + { + $logs = array(); + foreach (explode("\n", trim($this->fetch())) as $message) { + preg_match('/^\[(.*)\] (.*)/', $message, $matches); + $logs[] = sprintf('%s %s', $matches[1], $matches[2]); + } + + return $logs; + } +} diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/Foo1Command.php b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/Foo1Command.php new file mode 100644 index 0000000..254162f --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/Foo1Command.php @@ -0,0 +1,26 @@ +<?php + +use Symfony\Component\Console\Command\Command; +use Symfony\Component\Console\Input\InputInterface; +use Symfony\Component\Console\Output\OutputInterface; + +class Foo1Command extends Command +{ + public $input; + public $output; + + protected function configure() + { + $this + ->setName('foo:bar1') + ->setDescription('The foo:bar1 command') + ->setAliases(array('afoobar1')) + ; + } + + protected function execute(InputInterface $input, OutputInterface $output) + { + $this->input = $input; + $this->output = $output; + } +} diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/Foo2Command.php b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/Foo2Command.php new file mode 100644 index 0000000..8071dc8 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/Foo2Command.php @@ -0,0 +1,21 @@ +<?php + +use Symfony\Component\Console\Command\Command; +use Symfony\Component\Console\Input\InputInterface; +use Symfony\Component\Console\Output\OutputInterface; + +class Foo2Command extends Command +{ + protected function configure() + { + $this + ->setName('foo1:bar') + ->setDescription('The foo1:bar command') + ->setAliases(array('afoobar2')) + ; + } + + protected function execute(InputInterface $input, OutputInterface $output) + { + } +} diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/Foo3Command.php b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/Foo3Command.php new file mode 100644 index 0000000..6c890fa --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/Foo3Command.php @@ -0,0 +1,29 @@ +<?php + +use Symfony\Component\Console\Command\Command; +use Symfony\Component\Console\Input\InputInterface; +use Symfony\Component\Console\Output\OutputInterface; + +class Foo3Command extends Command +{ + protected function configure() + { + $this + ->setName('foo3:bar') + ->setDescription('The foo3:bar command') + ; + } + + protected function execute(InputInterface $input, OutputInterface $output) + { + try { + try { + throw new \Exception('First exception <p>this is html</p>'); + } catch (\Exception $e) { + throw new \Exception('Second exception <comment>comment</comment>', 0, $e); + } + } catch (\Exception $e) { + throw new \Exception('Third exception <fg=blue;bg=red>comment</>', 0, $e); + } + } +} diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/Foo4Command.php b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/Foo4Command.php new file mode 100644 index 0000000..1c54639 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/Foo4Command.php @@ -0,0 +1,11 @@ +<?php + +use Symfony\Component\Console\Command\Command; + +class Foo4Command extends Command +{ + protected function configure() + { + $this->setName('foo3:bar:toh'); + } +} diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/Foo5Command.php b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/Foo5Command.php new file mode 100644 index 0000000..a1c6082 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/Foo5Command.php @@ -0,0 +1,10 @@ +<?php + +use Symfony\Component\Console\Command\Command; + +class Foo5Command extends Command +{ + public function __construct() + { + } +} diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/FooCommand.php b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/FooCommand.php new file mode 100644 index 0000000..355e0ad --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/FooCommand.php @@ -0,0 +1,33 @@ +<?php + +use Symfony\Component\Console\Command\Command; +use Symfony\Component\Console\Input\InputInterface; +use Symfony\Component\Console\Output\OutputInterface; + +class FooCommand extends Command +{ + public $input; + public $output; + + protected function configure() + { + $this + ->setName('foo:bar') + ->setDescription('The foo:bar command') + ->setAliases(array('afoobar')) + ; + } + + protected function interact(InputInterface $input, OutputInterface $output) + { + $output->writeln('interact called'); + } + + protected function execute(InputInterface $input, OutputInterface $output) + { + $this->input = $input; + $this->output = $output; + + $output->writeln('called'); + } +} diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/FooSubnamespaced1Command.php b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/FooSubnamespaced1Command.php new file mode 100644 index 0000000..fc50c72 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/FooSubnamespaced1Command.php @@ -0,0 +1,26 @@ +<?php + +use Symfony\Component\Console\Command\Command; +use Symfony\Component\Console\Input\InputInterface; +use Symfony\Component\Console\Output\OutputInterface; + +class FooSubnamespaced1Command extends Command +{ + public $input; + public $output; + + protected function configure() + { + $this + ->setName('foo:bar:baz') + ->setDescription('The foo:bar:baz command') + ->setAliases(array('foobarbaz')) + ; + } + + protected function execute(InputInterface $input, OutputInterface $output) + { + $this->input = $input; + $this->output = $output; + } +} diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/FooSubnamespaced2Command.php b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/FooSubnamespaced2Command.php new file mode 100644 index 0000000..1cf31ff --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/FooSubnamespaced2Command.php @@ -0,0 +1,26 @@ +<?php + +use Symfony\Component\Console\Command\Command; +use Symfony\Component\Console\Input\InputInterface; +use Symfony\Component\Console\Output\OutputInterface; + +class FooSubnamespaced2Command extends Command +{ + public $input; + public $output; + + protected function configure() + { + $this + ->setName('foo:go:bret') + ->setDescription('The foo:bar:go command') + ->setAliases(array('foobargo')) + ; + } + + protected function execute(InputInterface $input, OutputInterface $output) + { + $this->input = $input; + $this->output = $output; + } +} diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/FoobarCommand.php b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/FoobarCommand.php new file mode 100644 index 0000000..9681628 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/FoobarCommand.php @@ -0,0 +1,25 @@ +<?php + +use Symfony\Component\Console\Command\Command; +use Symfony\Component\Console\Input\InputInterface; +use Symfony\Component\Console\Output\OutputInterface; + +class FoobarCommand extends Command +{ + public $input; + public $output; + + protected function configure() + { + $this + ->setName('foobar:foo') + ->setDescription('The foobar:foo command') + ; + } + + protected function execute(InputInterface $input, OutputInterface $output) + { + $this->input = $input; + $this->output = $output; + } +} diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/TestCommand.php b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/TestCommand.php new file mode 100644 index 0000000..dcd3273 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/TestCommand.php @@ -0,0 +1,28 @@ +<?php + +use Symfony\Component\Console\Command\Command; +use Symfony\Component\Console\Input\InputInterface; +use Symfony\Component\Console\Output\OutputInterface; + +class TestCommand extends Command +{ + protected function configure() + { + $this + ->setName('namespace:name') + ->setAliases(array('name')) + ->setDescription('description') + ->setHelp('help') + ; + } + + protected function execute(InputInterface $input, OutputInterface $output) + { + $output->writeln('execute called'); + } + + protected function interact(InputInterface $input, OutputInterface $output) + { + $output->writeln('interact called'); + } +} diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_1.json b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_1.json new file mode 100644 index 0000000..7f8d92e --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_1.json @@ -0,0 +1 @@ +{"commands":[{"name":"help","usage":"help [--xml] [--format=\"...\"] [--raw] [command_name]","description":"Displays help for a command","help":"The <info>help<\/info> command displays help for a given command:\n\n <info>php app\/console help list<\/info>\n\nYou can also output the help in other formats by using the <comment>--format<\/comment> option:\n\n <info>php app\/console help --format=xml list<\/info>\n\nTo display the list of available commands, please use the <info>list<\/info> command.","aliases":[],"definition":{"arguments":{"command_name":{"name":"command_name","is_required":false,"is_array":false,"description":"The command name","default":"help"}},"options":{"xml":{"name":"--xml","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"To output help as XML","default":false},"format":{"name":"--format","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"To output help in other formats","default":"txt"},"raw":{"name":"--raw","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"To output raw command help","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}}},{"name":"list","usage":"list [--xml] [--raw] [--format=\"...\"] [namespace]","description":"Lists commands","help":"The <info>list<\/info> command lists all commands:\n\n <info>php app\/console list<\/info>\n\nYou can also display the commands for a specific namespace:\n\n <info>php app\/console list test<\/info>\n\nYou can also output the information in other formats by using the <comment>--format<\/comment> option:\n\n <info>php app\/console list --format=xml<\/info>\n\nIt's also possible to get raw list of commands (useful for embedding command runner):\n\n <info>php app\/console list --raw<\/info>","aliases":[],"definition":{"arguments":{"namespace":{"name":"namespace","is_required":false,"is_array":false,"description":"The namespace name","default":null}},"options":{"xml":{"name":"--xml","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"To output list as XML","default":false},"raw":{"name":"--raw","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"To output raw command list","default":false},"format":{"name":"--format","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"To output list in other formats","default":"txt"}}}}],"namespaces":[{"id":"_global","commands":["help","list"]}]} diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_1.md b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_1.md new file mode 100644 index 0000000..e380416 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_1.md @@ -0,0 +1,199 @@ +UNKNOWN +======= + +* help +* list + +help +---- + +* Description: Displays help for a command +* Usage: `help [--xml] [--format="..."] [--raw] [command_name]` +* Aliases: <none> + +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. + +### Arguments: + +**command_name:** + +* Name: command_name +* Is required: no +* Is array: no +* Description: The command name +* Default: `'help'` + +### Options: + +**xml:** + +* Name: `--xml` +* Shortcut: <none> +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: To output help as XML +* Default: `false` + +**format:** + +* Name: `--format` +* Shortcut: <none> +* Accept value: yes +* Is value required: yes +* Is multiple: no +* Description: To output help in other formats +* Default: `'txt'` + +**raw:** + +* Name: `--raw` +* Shortcut: <none> +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: To output raw command help +* Default: `false` + +**help:** + +* Name: `--help` +* Shortcut: `-h` +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: Display this help message +* Default: `false` + +**quiet:** + +* Name: `--quiet` +* Shortcut: `-q` +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: Do not output any message +* Default: `false` + +**verbose:** + +* Name: `--verbose` +* Shortcut: `-v|-vv|-vvv` +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug +* Default: `false` + +**version:** + +* Name: `--version` +* Shortcut: `-V` +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: Display this application version +* Default: `false` + +**ansi:** + +* Name: `--ansi` +* Shortcut: <none> +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: Force ANSI output +* Default: `false` + +**no-ansi:** + +* Name: `--no-ansi` +* Shortcut: <none> +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: Disable ANSI output +* Default: `false` + +**no-interaction:** + +* Name: `--no-interaction` +* Shortcut: `-n` +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: Do not ask any interactive question +* Default: `false` + +list +---- + +* Description: Lists commands +* Usage: `list [--xml] [--raw] [--format="..."] [namespace]` +* Aliases: <none> + +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> + +### Arguments: + +**namespace:** + +* Name: namespace +* Is required: no +* Is array: no +* Description: The namespace name +* Default: `NULL` + +### Options: + +**xml:** + +* Name: `--xml` +* Shortcut: <none> +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: To output list as XML +* Default: `false` + +**raw:** + +* Name: `--raw` +* Shortcut: <none> +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: To output raw command list +* Default: `false` + +**format:** + +* Name: `--format` +* Shortcut: <none> +* Accept value: yes +* Is value required: yes +* Is multiple: no +* Description: To output list in other formats +* Default: `'txt'` diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_1.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_1.txt new file mode 100644 index 0000000..f3a1968 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_1.txt @@ -0,0 +1,17 @@ +<info>Console Tool</info> + +<comment>Usage:</comment> + command [options] [arguments] + +<comment>Options:</comment> + <info>--help</info> (-h) Display this help message + <info>--quiet</info> (-q) Do not output any message + <info>--verbose</info> (-v|vv|vvv) Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug + <info>--version</info> (-V) Display this application version + <info>--ansi</info> Force ANSI output + <info>--no-ansi</info> Disable ANSI output + <info>--no-interaction</info> (-n) Do not ask any interactive question + +<comment>Available commands:</comment> + <info>help </info> Displays help for a command + <info>list </info> Lists commands diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_1.xml b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_1.xml new file mode 100644 index 0000000..1763108 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_1.xml @@ -0,0 +1,108 @@ +<?xml version="1.0" encoding="UTF-8"?> +<symfony> + <commands> + <command id="help" name="help"> + <usage>help [--xml] [--format="..."] [--raw] [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 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> + <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> + <option name="--format" shortcut="" accept_value="1" is_value_required="1" is_multiple="0"> + <description>To output help in other formats</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"> + <usage>list [--xml] [--raw] [--format="..."] [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 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> + <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 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>To output list in other formats</description> + <defaults> + <default>txt</default> + </defaults> + </option> + </options> + </command> + </commands> + <namespaces> + <namespace id="_global"> + <command>help</command> + <command>list</command> + </namespace> + </namespaces> +</symfony> diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_2.json b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_2.json new file mode 100644 index 0000000..1655d47 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_2.json @@ -0,0 +1 @@ +{"commands":[{"name":"help","usage":"help [--xml] [--format=\"...\"] [--raw] [command_name]","description":"Displays help for a command","help":"The <info>help<\/info> command displays help for a given command:\n\n <info>php app\/console help list<\/info>\n\nYou can also output the help in other formats by using the <comment>--format<\/comment> option:\n\n <info>php app\/console help --format=xml list<\/info>\n\nTo display the list of available commands, please use the <info>list<\/info> command.","aliases":[],"definition":{"arguments":{"command_name":{"name":"command_name","is_required":false,"is_array":false,"description":"The command name","default":"help"}},"options":{"xml":{"name":"--xml","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"To output help as XML","default":false},"format":{"name":"--format","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"To output help in other formats","default":"txt"},"raw":{"name":"--raw","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"To output raw command help","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}}},{"name":"list","usage":"list [--xml] [--raw] [--format=\"...\"] [namespace]","description":"Lists commands","help":"The <info>list<\/info> command lists all commands:\n\n <info>php app\/console list<\/info>\n\nYou can also display the commands for a specific namespace:\n\n <info>php app\/console list test<\/info>\n\nYou can also output the information in other formats by using the <comment>--format<\/comment> option:\n\n <info>php app\/console list --format=xml<\/info>\n\nIt's also possible to get raw list of commands (useful for embedding command runner):\n\n <info>php app\/console list --raw<\/info>","aliases":[],"definition":{"arguments":{"namespace":{"name":"namespace","is_required":false,"is_array":false,"description":"The namespace name","default":null}},"options":{"xml":{"name":"--xml","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"To output list as XML","default":false},"raw":{"name":"--raw","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"To output raw command list","default":false},"format":{"name":"--format","shortcut":"","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"To output list in other formats","default":"txt"}}}},{"name":"descriptor:command1","usage":"descriptor:command1","description":"command 1 description","help":"command 1 help","aliases":["alias1","alias2"],"definition":{"arguments":[],"options":{"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}}},{"name":"descriptor:command2","usage":"descriptor:command2 [-o|--option_name] argument_name","description":"command 2 description","help":"command 2 help","aliases":[],"definition":{"arguments":{"argument_name":{"name":"argument_name","is_required":true,"is_array":false,"description":"","default":null}},"options":{"option_name":{"name":"--option_name","shortcut":"-o","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"","default":false},"help":{"name":"--help","shortcut":"-h","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this help message","default":false},"quiet":{"name":"--quiet","shortcut":"-q","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not output any message","default":false},"verbose":{"name":"--verbose","shortcut":"-v|-vv|-vvv","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug","default":false},"version":{"name":"--version","shortcut":"-V","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Display this application version","default":false},"ansi":{"name":"--ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Force ANSI output","default":false},"no-ansi":{"name":"--no-ansi","shortcut":"","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Disable ANSI output","default":false},"no-interaction":{"name":"--no-interaction","shortcut":"-n","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"Do not ask any interactive question","default":false}}}}],"namespaces":[{"id":"_global","commands":["alias1","alias2","help","list"]},{"id":"descriptor","commands":["descriptor:command1","descriptor:command2"]}]} diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_2.md b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_2.md new file mode 100644 index 0000000..7492886 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_2.md @@ -0,0 +1,388 @@ +My Symfony application +====================== + +* alias1 +* alias2 +* help +* list + +**descriptor:** + +* descriptor:command1 +* descriptor:command2 + +help +---- + +* Description: Displays help for a command +* Usage: `help [--xml] [--format="..."] [--raw] [command_name]` +* Aliases: <none> + +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. + +### Arguments: + +**command_name:** + +* Name: command_name +* Is required: no +* Is array: no +* Description: The command name +* Default: `'help'` + +### Options: + +**xml:** + +* Name: `--xml` +* Shortcut: <none> +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: To output help as XML +* Default: `false` + +**format:** + +* Name: `--format` +* Shortcut: <none> +* Accept value: yes +* Is value required: yes +* Is multiple: no +* Description: To output help in other formats +* Default: `'txt'` + +**raw:** + +* Name: `--raw` +* Shortcut: <none> +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: To output raw command help +* Default: `false` + +**help:** + +* Name: `--help` +* Shortcut: `-h` +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: Display this help message +* Default: `false` + +**quiet:** + +* Name: `--quiet` +* Shortcut: `-q` +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: Do not output any message +* Default: `false` + +**verbose:** + +* Name: `--verbose` +* Shortcut: `-v|-vv|-vvv` +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug +* Default: `false` + +**version:** + +* Name: `--version` +* Shortcut: `-V` +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: Display this application version +* Default: `false` + +**ansi:** + +* Name: `--ansi` +* Shortcut: <none> +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: Force ANSI output +* Default: `false` + +**no-ansi:** + +* Name: `--no-ansi` +* Shortcut: <none> +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: Disable ANSI output +* Default: `false` + +**no-interaction:** + +* Name: `--no-interaction` +* Shortcut: `-n` +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: Do not ask any interactive question +* Default: `false` + +list +---- + +* Description: Lists commands +* Usage: `list [--xml] [--raw] [--format="..."] [namespace]` +* Aliases: <none> + +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> + +### Arguments: + +**namespace:** + +* Name: namespace +* Is required: no +* Is array: no +* Description: The namespace name +* Default: `NULL` + +### Options: + +**xml:** + +* Name: `--xml` +* Shortcut: <none> +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: To output list as XML +* Default: `false` + +**raw:** + +* Name: `--raw` +* Shortcut: <none> +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: To output raw command list +* Default: `false` + +**format:** + +* Name: `--format` +* Shortcut: <none> +* Accept value: yes +* Is value required: yes +* Is multiple: no +* Description: To output list in other formats +* Default: `'txt'` + +descriptor:command1 +------------------- + +* Description: command 1 description +* Usage: `descriptor:command1` +* Aliases: `alias1`, `alias2` + +command 1 help + +### Options: + +**help:** + +* Name: `--help` +* Shortcut: `-h` +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: Display this help message +* Default: `false` + +**quiet:** + +* Name: `--quiet` +* Shortcut: `-q` +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: Do not output any message +* Default: `false` + +**verbose:** + +* Name: `--verbose` +* Shortcut: `-v|-vv|-vvv` +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug +* Default: `false` + +**version:** + +* Name: `--version` +* Shortcut: `-V` +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: Display this application version +* Default: `false` + +**ansi:** + +* Name: `--ansi` +* Shortcut: <none> +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: Force ANSI output +* Default: `false` + +**no-ansi:** + +* Name: `--no-ansi` +* Shortcut: <none> +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: Disable ANSI output +* Default: `false` + +**no-interaction:** + +* Name: `--no-interaction` +* Shortcut: `-n` +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: Do not ask any interactive question +* Default: `false` + +descriptor:command2 +------------------- + +* Description: command 2 description +* Usage: `descriptor:command2 [-o|--option_name] argument_name` +* Aliases: <none> + +command 2 help + +### Arguments: + +**argument_name:** + +* Name: argument_name +* Is required: yes +* Is array: no +* Description: <none> +* Default: `NULL` + +### Options: + +**option_name:** + +* Name: `--option_name` +* Shortcut: `-o` +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: <none> +* Default: `false` + +**help:** + +* Name: `--help` +* Shortcut: `-h` +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: Display this help message +* Default: `false` + +**quiet:** + +* Name: `--quiet` +* Shortcut: `-q` +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: Do not output any message +* Default: `false` + +**verbose:** + +* Name: `--verbose` +* Shortcut: `-v|-vv|-vvv` +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug +* Default: `false` + +**version:** + +* Name: `--version` +* Shortcut: `-V` +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: Display this application version +* Default: `false` + +**ansi:** + +* Name: `--ansi` +* Shortcut: <none> +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: Force ANSI output +* Default: `false` + +**no-ansi:** + +* Name: `--no-ansi` +* Shortcut: <none> +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: Disable ANSI output +* Default: `false` + +**no-interaction:** + +* Name: `--no-interaction` +* Shortcut: `-n` +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: Do not ask any interactive question +* Default: `false` diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_2.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_2.txt new file mode 100644 index 0000000..a640a8d --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_2.txt @@ -0,0 +1,22 @@ +<info>My Symfony application</info> version <comment>v1.0</comment> + +<comment>Usage:</comment> + command [options] [arguments] + +<comment>Options:</comment> + <info>--help</info> (-h) Display this help message + <info>--quiet</info> (-q) Do not output any message + <info>--verbose</info> (-v|vv|vvv) Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug + <info>--version</info> (-V) Display this application version + <info>--ansi</info> Force ANSI output + <info>--no-ansi</info> Disable ANSI output + <info>--no-interaction</info> (-n) Do not ask any interactive question + +<comment>Available commands:</comment> + <info>alias1 </info> command 1 description + <info>alias2 </info> command 1 description + <info>help </info> Displays help for a command + <info>list </info> Lists commands +<comment>descriptor</comment> + <info>descriptor:command1 </info> command 1 description + <info>descriptor:command2 </info> command 2 description diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_2.xml b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_2.xml new file mode 100644 index 0000000..a7d65b4 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_2.xml @@ -0,0 +1,185 @@ +<?xml version="1.0" encoding="UTF-8"?> +<symfony name="My Symfony application" version="v1.0"> + <commands> + <command id="help" name="help"> + <usage>help [--xml] [--format="..."] [--raw] [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 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> + <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> + <option name="--format" shortcut="" accept_value="1" is_value_required="1" is_multiple="0"> + <description>To output help in other formats</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"> + <usage>list [--xml] [--raw] [--format="..."] [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 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> + <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 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>To output list in other formats</description> + <defaults> + <default>txt</default> + </defaults> + </option> + </options> + </command> + <command id="descriptor:command1" name="descriptor:command1"> + <usage>descriptor:command1</usage> + <description>command 1 description</description> + <help>command 1 help</help> + <aliases> + <alias>alias1</alias> + <alias>alias2</alias> + </aliases> + <arguments/> + <options> + <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="descriptor:command2" name="descriptor:command2"> + <usage>descriptor:command2 [-o|--option_name] argument_name</usage> + <description>command 2 description</description> + <help>command 2 help</help> + <aliases/> + <arguments> + <argument name="argument_name" is_required="1" is_array="0"> + <description></description> + <defaults/> + </argument> + </arguments> + <options> + <option name="--option_name" shortcut="-o" accept_value="0" is_value_required="0" is_multiple="0"> + <description></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> + </commands> + <namespaces> + <namespace id="_global"> + <command>alias1</command> + <command>alias2</command> + <command>help</command> + <command>list</command> + </namespace> + <namespace id="descriptor"> + <command>descriptor:command1</command> + <command>descriptor:command2</command> + </namespace> + </namespaces> +</symfony> diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_astext1.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_astext1.txt new file mode 100644 index 0000000..d9734fe --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_astext1.txt @@ -0,0 +1,20 @@ +<info>Console Tool</info> + +<comment>Usage:</comment> + command [options] [arguments] + +<comment>Options:</comment> + <info>--help</info> (-h) Display this help message + <info>--quiet</info> (-q) Do not output any message + <info>--verbose</info> (-v|vv|vvv) Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug + <info>--version</info> (-V) Display this application version + <info>--ansi</info> Force ANSI output + <info>--no-ansi</info> Disable ANSI output + <info>--no-interaction</info> (-n) Do not ask any interactive question + +<comment>Available commands:</comment> + <info>afoobar </info> The foo:bar command + <info>help </info> Displays help for a command + <info>list </info> Lists commands +<comment>foo</comment> + <info>foo:bar </info> The foo:bar command diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_astext2.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_astext2.txt new file mode 100644 index 0000000..49992cf --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_astext2.txt @@ -0,0 +1,16 @@ +<info>Console Tool</info> + +<comment>Usage:</comment> + command [options] [arguments] + +<comment>Options:</comment> + <info>--help</info> (-h) Display this help message + <info>--quiet</info> (-q) Do not output any message + <info>--verbose</info> (-v|vv|vvv) Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug + <info>--version</info> (-V) Display this application version + <info>--ansi</info> Force ANSI output + <info>--no-ansi</info> Disable ANSI output + <info>--no-interaction</info> (-n) Do not ask any interactive question + +<comment>Available commands for the "foo" namespace:</comment> + <info>foo:bar </info> The foo:bar command diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_asxml1.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_asxml1.txt new file mode 100644 index 0000000..d956781 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_asxml1.txt @@ -0,0 +1,144 @@ +<?xml version="1.0" encoding="UTF-8"?> +<symfony> + <commands> + <command id="help" name="help"> + <usage>help [--xml] [--format="..."] [--raw] [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 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> + <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> + <option name="--format" shortcut="" accept_value="1" is_value_required="1" is_multiple="0"> + <description>To output help in other formats</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"> + <usage>list [--xml] [--raw] [--format="..."] [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 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> + <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 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>To output list in other formats</description> + <defaults> + <default>txt</default> + </defaults> + </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> + <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> + </commands> + <namespaces> + <namespace id="_global"> + <command>afoobar</command> + <command>help</command> + <command>list</command> + </namespace> + <namespace id="foo"> + <command>foo:bar</command> + </namespace> + </namespaces> +</symfony> diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_asxml2.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_asxml2.txt new file mode 100644 index 0000000..0b30b20 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_asxml2.txt @@ -0,0 +1,37 @@ +<?xml version="1.0" encoding="UTF-8"?> +<symfony> + <commands namespace="foo"> + <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> + <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> + </commands> +</symfony> diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_gethelp.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_gethelp.txt new file mode 100644 index 0000000..0c16e3c --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_gethelp.txt @@ -0,0 +1 @@ +<info>Console Tool</info>
\ No newline at end of file diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception1.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception1.txt new file mode 100644 index 0000000..4629345 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception1.txt @@ -0,0 +1,8 @@ + + + + [InvalidArgumentException] + Command "foo" is not defined. + + + diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception2.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception2.txt new file mode 100644 index 0000000..c758129 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception2.txt @@ -0,0 +1,11 @@ + + + + [InvalidArgumentException] + The "--foo" option does not exist. + + + +list [--xml] [--raw] [--format="..."] [namespace] + + diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception3.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception3.txt new file mode 100644 index 0000000..72a7286 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception3.txt @@ -0,0 +1,27 @@ + + + + [Exception] + Third exception comment + + + + + + + [Exception] + Second exception comment + + + + + + + [Exception] + First exception <p>this is html</p> + + + +foo3:bar + + diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception3decorated.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception3decorated.txt new file mode 100644 index 0000000..b44d50b --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception3decorated.txt @@ -0,0 +1,27 @@ + + +[37;41m [39;49m +[37;41m [Exception] [39;49m +[37;41m Third exception [39;49m[34;41mcomment[39;49m[37;41m [39;49m +[37;41m [39;49m + + + + +[37;41m [39;49m +[37;41m [Exception] [39;49m +[37;41m Second exception [39;49m[33mcomment[39m[37;41m [39;49m +[37;41m [39;49m + + + + +[37;41m [39;49m +[37;41m [Exception] [39;49m +[37;41m First exception [39;49m[37;41m<p>[39;49m[37;41mthis is html[39;49m[37;41m</p>[39;49m[37;41m [39;49m +[37;41m [39;49m + + +[32mfoo3:bar[39m + + diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception4.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception4.txt new file mode 100644 index 0000000..19f893b --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception4.txt @@ -0,0 +1,9 @@ + + + + [InvalidArgumentException] + Command "foo" is not define + d. + + + diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception_doublewidth1.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception_doublewidth1.txt new file mode 100644 index 0000000..6a98660 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception_doublewidth1.txt @@ -0,0 +1,11 @@ + + + + [Exception] + エラーメッセージ + + + +foo + + diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception_doublewidth1decorated.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception_doublewidth1decorated.txt new file mode 100644 index 0000000..8c8801b --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception_doublewidth1decorated.txt @@ -0,0 +1,11 @@ + + +[37;41m [39;49m +[37;41m [Exception] [39;49m +[37;41m エラーメッセージ [39;49m +[37;41m [39;49m + + +[32mfoo[39m + + diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception_doublewidth2.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception_doublewidth2.txt new file mode 100644 index 0000000..545cd7b --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception_doublewidth2.txt @@ -0,0 +1,12 @@ + + + + [Exception] + コマンドの実行中にエラーが + 発生しました。 + + + +foo + + diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_run1.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_run1.txt new file mode 100644 index 0000000..9bd08b5 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_run1.txt @@ -0,0 +1,17 @@ +Console Tool + +Usage: + command [options] [arguments] + +Options: + --help (-h) Display this help message + --quiet (-q) Do not output any message + --verbose (-v|vv|vvv) Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug + --version (-V) Display this application version + --ansi Force ANSI output + --no-ansi Disable ANSI output + --no-interaction (-n) Do not ask any interactive question + +Available commands: + help Displays help for a command + list Lists commands diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_run2.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_run2.txt new file mode 100644 index 0000000..6963c0f --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_run2.txt @@ -0,0 +1,29 @@ +Usage: + help [--xml] [--format="..."] [--raw] [command_name] + +Arguments: + command The command to execute + command_name The command name (default: "help") + +Options: + --xml To output help as XML + --format To output help in other formats (default: "txt") + --raw To output raw command help + --help (-h) Display this help message + --quiet (-q) Do not output any message + --verbose (-v|vv|vvv) Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug + --version (-V) Display this application version + --ansi Force ANSI output + --no-ansi Disable ANSI output + --no-interaction (-n) Do not ask any interactive question + +Help: + 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. diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_run3.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_run3.txt new file mode 100644 index 0000000..0139775 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_run3.txt @@ -0,0 +1,27 @@ +Usage: + list [--xml] [--raw] [--format="..."] [namespace] + +Arguments: + namespace The namespace name + +Options: + --xml To output list as XML + --raw To output raw command list + --format To output list in other formats (default: "txt") + +Help: + 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 diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_run4.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_run4.txt new file mode 100644 index 0000000..47187fc --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_run4.txt @@ -0,0 +1 @@ +Console Tool diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_1.json b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_1.json new file mode 100644 index 0000000..0c1675d --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_1.json @@ -0,0 +1 @@ +{"name":"descriptor:command1","usage":"descriptor:command1","description":"command 1 description","help":"command 1 help","aliases":["alias1","alias2"],"definition":{"arguments":[],"options":[]}} diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_1.md b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_1.md new file mode 100644 index 0000000..2cef9a2 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_1.md @@ -0,0 +1,8 @@ +descriptor:command1 +------------------- + +* Description: command 1 description +* Usage: `descriptor:command1` +* Aliases: `alias1`, `alias2` + +command 1 help diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_1.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_1.txt new file mode 100644 index 0000000..2375ac0 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_1.txt @@ -0,0 +1,7 @@ +<comment>Usage:</comment> + descriptor:command1 + +<comment>Aliases:</comment> <info>alias1, alias2</info> + +<comment>Help:</comment> + command 1 help diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_1.xml b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_1.xml new file mode 100644 index 0000000..dcfa6fa --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_1.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<command id="descriptor:command1" name="descriptor:command1"> + <usage>descriptor:command1</usage> + <description>command 1 description</description> + <help>command 1 help</help> + <aliases> + <alias>alias1</alias> + <alias>alias2</alias> + </aliases> + <arguments/> + <options/> +</command> diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_2.json b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_2.json new file mode 100644 index 0000000..493b584 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_2.json @@ -0,0 +1 @@ +{"name":"descriptor:command2","usage":"descriptor:command2 [-o|--option_name] argument_name","description":"command 2 description","help":"command 2 help","aliases":[],"definition":{"arguments":{"argument_name":{"name":"argument_name","is_required":true,"is_array":false,"description":"","default":null}},"options":{"option_name":{"name":"--option_name","shortcut":"-o","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"","default":false}}}} diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_2.md b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_2.md new file mode 100644 index 0000000..5257c0d --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_2.md @@ -0,0 +1,30 @@ +descriptor:command2 +------------------- + +* Description: command 2 description +* Usage: `descriptor:command2 [-o|--option_name] argument_name` +* Aliases: <none> + +command 2 help + +### Arguments: + +**argument_name:** + +* Name: argument_name +* Is required: yes +* Is array: no +* Description: <none> +* Default: `NULL` + +### Options: + +**option_name:** + +* Name: `--option_name` +* Shortcut: `-o` +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: <none> +* Default: `false` diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_2.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_2.txt new file mode 100644 index 0000000..1da9f3d --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_2.txt @@ -0,0 +1,11 @@ +<comment>Usage:</comment> + descriptor:command2 [-o|--option_name] argument_name + +<comment>Arguments:</comment> + <info>argument_name </info> + +<comment>Options:</comment> + <info>--option_name</info> (-o) + +<comment>Help:</comment> + command 2 help diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_2.xml b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_2.xml new file mode 100644 index 0000000..c411c36 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_2.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="UTF-8"?> +<command id="descriptor:command2" name="descriptor:command2"> + <usage>descriptor:command2 [-o|--option_name] argument_name</usage> + <description>command 2 description</description> + <help>command 2 help</help> + <aliases/> + <arguments> + <argument name="argument_name" is_required="1" is_array="0"> + <description></description> + <defaults/> + </argument> + </arguments> + <options> + <option name="--option_name" shortcut="-o" accept_value="0" is_value_required="0" is_multiple="0"> + <description></description> + </option> + </options> +</command> diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_astext.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_astext.txt new file mode 100644 index 0000000..5d70351 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_astext.txt @@ -0,0 +1,18 @@ +<comment>Usage:</comment> + namespace:name + +<comment>Aliases:</comment> <info>name</info> +<comment>Arguments:</comment> + <info>command </info> The command to execute + +<comment>Options:</comment> + <info>--help</info> (-h) Display this help message + <info>--quiet</info> (-q) Do not output any message + <info>--verbose</info> (-v|vv|vvv) Increase the verbosity of messages: 1 for normal output, 2 for more verbose output and 3 for debug + <info>--version</info> (-V) Display this application version + <info>--ansi</info> Force ANSI output + <info>--no-ansi</info> Disable ANSI output + <info>--no-interaction</info> (-n) Do not ask any interactive question + +<comment>Help:</comment> + help diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_asxml.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_asxml.txt new file mode 100644 index 0000000..57542fa --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_asxml.txt @@ -0,0 +1,38 @@ +<?xml version="1.0" encoding="UTF-8"?> +<command id="namespace:name" name="namespace:name"> + <usage>namespace:name</usage> + <description>description</description> + <help>help</help> + <aliases> + <alias>name</alias> + </aliases> + <arguments> + <argument name="command" is_required="1" is_array="0"> + <description>The command to execute</description> + <defaults/> + </argument> + </arguments> + <options> + <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> diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/definition_astext.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/definition_astext.txt new file mode 100644 index 0000000..a7d7e0d --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/definition_astext.txt @@ -0,0 +1,11 @@ +<comment>Arguments:</comment> + <info>foo </info> The foo argument + <info>baz </info> The baz argument<comment> (default: true)</comment> + <info>bar </info> The bar argument<comment> (default: ["http://foo.com/"])</comment> + +<comment>Options:</comment> + <info>--foo</info> (-f) The foo option + <info>--baz</info> The baz option<comment> (default: false)</comment> + <info>--bar</info> (-b) The bar option<comment> (default: "bar")</comment> + <info>--qux</info> The qux option<comment> (default: ["http://foo.com/","bar"])</comment><comment> (multiple values allowed)</comment> + <info>--qux2</info> The qux2 option<comment> (default: {"foo":"bar"})</comment><comment> (multiple values allowed)</comment> diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/definition_asxml.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/definition_asxml.txt new file mode 100644 index 0000000..eec8c07 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/definition_asxml.txt @@ -0,0 +1,39 @@ +<?xml version="1.0" encoding="UTF-8"?> +<definition> + <arguments> + <argument name="foo" is_required="0" is_array="0"> + <description>The foo argument</description> + <defaults/> + </argument> + <argument name="baz" is_required="0" is_array="0"> + <description>The baz argument</description> + <defaults> + <default>true</default> + </defaults> + </argument> + <argument name="bar" is_required="0" is_array="1"> + <description>The bar argument</description> + <defaults> + <default>bar</default> + </defaults> + </argument> + </arguments> + <options> + <option name="--foo" shortcut="-f" accept_value="1" is_value_required="1" is_multiple="0"> + <description>The foo option</description> + <defaults/> + </option> + <option name="--baz" shortcut="" accept_value="1" is_value_required="0" is_multiple="0"> + <description>The baz option</description> + <defaults> + <default>false</default> + </defaults> + </option> + <option name="--bar" shortcut="-b" accept_value="1" is_value_required="0" is_multiple="0"> + <description>The bar option</description> + <defaults> + <default>bar</default> + </defaults> + </option> + </options> +</definition> diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_1.json b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_1.json new file mode 100644 index 0000000..b8173b6 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_1.json @@ -0,0 +1 @@ +{"name":"argument_name","is_required":true,"is_array":false,"description":"","default":null} diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_1.md b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_1.md new file mode 100644 index 0000000..88f311a --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_1.md @@ -0,0 +1,7 @@ +**argument_name:** + +* Name: argument_name +* Is required: yes +* Is array: no +* Description: <none> +* Default: `NULL` diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_1.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_1.txt new file mode 100644 index 0000000..111e515 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_1.txt @@ -0,0 +1 @@ + <info>argument_name</info> diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_1.xml b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_1.xml new file mode 100644 index 0000000..cb37f81 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_1.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<argument name="argument_name" is_required="1" is_array="0"> + <description></description> + <defaults/> +</argument> diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_2.json b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_2.json new file mode 100644 index 0000000..ef06b09 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_2.json @@ -0,0 +1 @@ +{"name":"argument_name","is_required":false,"is_array":true,"description":"argument description","default":[]} diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_2.md b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_2.md new file mode 100644 index 0000000..3cdb00c --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_2.md @@ -0,0 +1,7 @@ +**argument_name:** + +* Name: argument_name +* Is required: no +* Is array: yes +* Description: argument description +* Default: `array ()` diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_2.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_2.txt new file mode 100644 index 0000000..9497b1c --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_2.txt @@ -0,0 +1 @@ + <info>argument_name</info> argument description diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_2.xml b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_2.xml new file mode 100644 index 0000000..629da5a --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_2.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<argument name="argument_name" is_required="0" is_array="1"> + <description>argument description</description> + <defaults/> +</argument> diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_3.json b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_3.json new file mode 100644 index 0000000..de8484e --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_3.json @@ -0,0 +1 @@ +{"name":"argument_name","is_required":false,"is_array":false,"description":"argument description","default":"default_value"} diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_3.md b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_3.md new file mode 100644 index 0000000..be1c443 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_3.md @@ -0,0 +1,7 @@ +**argument_name:** + +* Name: argument_name +* Is required: no +* Is array: no +* Description: argument description +* Default: `'default_value'` diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_3.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_3.txt new file mode 100644 index 0000000..c421fc9 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_3.txt @@ -0,0 +1 @@ + <info>argument_name</info> argument description<comment> (default: "default_value")</comment> diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_3.xml b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_3.xml new file mode 100644 index 0000000..399a5c8 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_3.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8"?> +<argument name="argument_name" is_required="0" is_array="0"> + <description>argument description</description> + <defaults> + <default>default_value</default> + </defaults> +</argument> diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_1.json b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_1.json new file mode 100644 index 0000000..c7a7d83 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_1.json @@ -0,0 +1 @@ +{"arguments":[],"options":[]} diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_1.md b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_1.md new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_1.md diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_1.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_1.txt new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_1.txt diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_1.xml b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_1.xml new file mode 100644 index 0000000..b5481ce --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_1.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<definition> + <arguments/> + <options/> +</definition> diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_2.json b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_2.json new file mode 100644 index 0000000..9964a55 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_2.json @@ -0,0 +1 @@ +{"arguments":{"argument_name":{"name":"argument_name","is_required":true,"is_array":false,"description":"","default":null}},"options":[]} diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_2.md b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_2.md new file mode 100644 index 0000000..923191c --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_2.md @@ -0,0 +1,9 @@ +### Arguments: + +**argument_name:** + +* Name: argument_name +* Is required: yes +* Is array: no +* Description: <none> +* Default: `NULL` diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_2.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_2.txt new file mode 100644 index 0000000..0db9f66 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_2.txt @@ -0,0 +1,2 @@ +<comment>Arguments:</comment> + <info>argument_name </info> diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_2.xml b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_2.xml new file mode 100644 index 0000000..102efc1 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_2.xml @@ -0,0 +1,10 @@ +<?xml version="1.0" encoding="UTF-8"?> +<definition> + <arguments> + <argument name="argument_name" is_required="1" is_array="0"> + <description></description> + <defaults/> + </argument> + </arguments> + <options/> +</definition> diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_3.json b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_3.json new file mode 100644 index 0000000..6a86056 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_3.json @@ -0,0 +1 @@ +{"arguments":[],"options":{"option_name":{"name":"--option_name","shortcut":"-o","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"","default":false}}} diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_3.md b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_3.md new file mode 100644 index 0000000..40fd7b0 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_3.md @@ -0,0 +1,11 @@ +### Options: + +**option_name:** + +* Name: `--option_name` +* Shortcut: `-o` +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: <none> +* Default: `false` diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_3.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_3.txt new file mode 100644 index 0000000..c6fb2cc --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_3.txt @@ -0,0 +1,2 @@ +<comment>Options:</comment> + <info>--option_name</info> (-o) diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_3.xml b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_3.xml new file mode 100644 index 0000000..bc95151 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_3.xml @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<definition> + <arguments/> + <options> + <option name="--option_name" shortcut="-o" accept_value="0" is_value_required="0" is_multiple="0"> + <description></description> + </option> + </options> +</definition> diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_4.json b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_4.json new file mode 100644 index 0000000..c5a0019 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_4.json @@ -0,0 +1 @@ +{"arguments":{"argument_name":{"name":"argument_name","is_required":true,"is_array":false,"description":"","default":null}},"options":{"option_name":{"name":"--option_name","shortcut":"-o","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"","default":false}}} diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_4.md b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_4.md new file mode 100644 index 0000000..a31feea --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_4.md @@ -0,0 +1,21 @@ +### Arguments: + +**argument_name:** + +* Name: argument_name +* Is required: yes +* Is array: no +* Description: <none> +* Default: `NULL` + +### Options: + +**option_name:** + +* Name: `--option_name` +* Shortcut: `-o` +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: <none> +* Default: `false` diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_4.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_4.txt new file mode 100644 index 0000000..e17c61c --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_4.txt @@ -0,0 +1,5 @@ +<comment>Arguments:</comment> + <info>argument_name </info> + +<comment>Options:</comment> + <info>--option_name</info> (-o) diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_4.xml b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_4.xml new file mode 100644 index 0000000..cffceec --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_4.xml @@ -0,0 +1,14 @@ +<?xml version="1.0" encoding="UTF-8"?> +<definition> + <arguments> + <argument name="argument_name" is_required="1" is_array="0"> + <description></description> + <defaults/> + </argument> + </arguments> + <options> + <option name="--option_name" shortcut="-o" accept_value="0" is_value_required="0" is_multiple="0"> + <description></description> + </option> + </options> +</definition> diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_1.json b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_1.json new file mode 100644 index 0000000..60c5b56 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_1.json @@ -0,0 +1 @@ +{"name":"--option_name","shortcut":"-o","accept_value":false,"is_value_required":false,"is_multiple":false,"description":"","default":false} diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_1.md b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_1.md new file mode 100644 index 0000000..6f9e9a7 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_1.md @@ -0,0 +1,9 @@ +**option_name:** + +* Name: `--option_name` +* Shortcut: `-o` +* Accept value: no +* Is value required: no +* Is multiple: no +* Description: <none> +* Default: `false` diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_1.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_1.txt new file mode 100644 index 0000000..daf83d0 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_1.txt @@ -0,0 +1 @@ + <info>--option_name</info> (-o) diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_1.xml b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_1.xml new file mode 100644 index 0000000..8a64ea6 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_1.xml @@ -0,0 +1,4 @@ +<?xml version="1.0" encoding="UTF-8"?> +<option name="--option_name" shortcut="-o" accept_value="0" is_value_required="0" is_multiple="0"> + <description></description> +</option> diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_2.json b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_2.json new file mode 100644 index 0000000..04e4228 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_2.json @@ -0,0 +1 @@ +{"name":"--option_name","shortcut":"-o","accept_value":true,"is_value_required":false,"is_multiple":false,"description":"option description","default":"default_value"} diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_2.md b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_2.md new file mode 100644 index 0000000..634ac0b --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_2.md @@ -0,0 +1,9 @@ +**option_name:** + +* Name: `--option_name` +* Shortcut: `-o` +* Accept value: yes +* Is value required: no +* Is multiple: no +* Description: option description +* Default: `'default_value'` diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_2.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_2.txt new file mode 100644 index 0000000..627e3c1 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_2.txt @@ -0,0 +1 @@ + <info>--option_name</info> (-o) option description<comment> (default: "default_value")</comment> diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_2.xml b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_2.xml new file mode 100644 index 0000000..4afac5b --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_2.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8"?> +<option name="--option_name" shortcut="-o" accept_value="1" is_value_required="0" is_multiple="0"> + <description>option description</description> + <defaults> + <default>default_value</default> + </defaults> +</option> diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_3.json b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_3.json new file mode 100644 index 0000000..c1ea120 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_3.json @@ -0,0 +1 @@ +{"name":"--option_name","shortcut":"-o","accept_value":true,"is_value_required":true,"is_multiple":false,"description":"option description","default":null} diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_3.md b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_3.md new file mode 100644 index 0000000..3428289 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_3.md @@ -0,0 +1,9 @@ +**option_name:** + +* Name: `--option_name` +* Shortcut: `-o` +* Accept value: yes +* Is value required: yes +* Is multiple: no +* Description: option description +* Default: `NULL` diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_3.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_3.txt new file mode 100644 index 0000000..b88b12d --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_3.txt @@ -0,0 +1 @@ + <info>--option_name</info> (-o) option description diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_3.xml b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_3.xml new file mode 100644 index 0000000..dcc0631 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_3.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<option name="--option_name" shortcut="-o" accept_value="1" is_value_required="1" is_multiple="0"> + <description>option description</description> + <defaults/> +</option> diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_4.json b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_4.json new file mode 100644 index 0000000..1b671d8 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_4.json @@ -0,0 +1 @@ +{"name":"--option_name","shortcut":"-o","accept_value":true,"is_value_required":false,"is_multiple":true,"description":"option description","default":[]} diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_4.md b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_4.md new file mode 100644 index 0000000..8ffba56 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_4.md @@ -0,0 +1,9 @@ +**option_name:** + +* Name: `--option_name` +* Shortcut: `-o` +* Accept value: yes +* Is value required: no +* Is multiple: yes +* Description: option description +* Default: `array ()` diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_4.txt b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_4.txt new file mode 100644 index 0000000..5dba5e6 --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_4.txt @@ -0,0 +1 @@ + <info>--option_name</info> (-o) option description<comment> (multiple values allowed)</comment> diff --git a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_4.xml b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_4.xml new file mode 100644 index 0000000..5e2418b --- /dev/null +++ b/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_4.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<option name="--option_name" shortcut="-o" accept_value="1" is_value_required="0" is_multiple="1"> + <description>option description</description> + <defaults/> +</option> |
