diff options
| author | Stefan Suhren <suhren.stefan@fh-swf.de> | 2015-05-11 15:02:33 +0200 |
|---|---|---|
| committer | Stefan Suhren <suhren.stefan@fh-swf.de> | 2015-05-11 15:02:33 +0200 |
| commit | a7e17cb70e9306f8887bd2b5ca1a37edcbe3ea0f (patch) | |
| tree | bf6e04c9bdba66e249fd6b78391e132da130848c /Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures | |
| parent | ea3fed0df4eaedd820f3f405502b62efe5952f8f (diff) | |
| download | InternetTechnologien-a7e17cb70e9306f8887bd2b5ca1a37edcbe3ea0f.tar.gz InternetTechnologien-a7e17cb70e9306f8887bd2b5ca1a37edcbe3ea0f.zip | |
Let composer manage its own files
Diffstat (limited to 'Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures')
97 files changed, 0 insertions, 2105 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 deleted file mode 100644 index 52b619e..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/BarBucCommand.php +++ /dev/null @@ -1,11 +0,0 @@ -<?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 deleted file mode 100644 index 132b6d5..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/DescriptorApplication1.php +++ /dev/null @@ -1,18 +0,0 @@ -<?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 deleted file mode 100644 index ff55135..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/DescriptorApplication2.php +++ /dev/null @@ -1,24 +0,0 @@ -<?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 deleted file mode 100644 index ede05d7..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/DescriptorCommand1.php +++ /dev/null @@ -1,27 +0,0 @@ -<?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 deleted file mode 100644 index bc04ca9..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/DescriptorCommand2.php +++ /dev/null @@ -1,30 +0,0 @@ -<?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 deleted file mode 100644 index aef6d22..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/DummyOutput.php +++ /dev/null @@ -1,36 +0,0 @@ -<?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 deleted file mode 100644 index 254162f..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/Foo1Command.php +++ /dev/null @@ -1,26 +0,0 @@ -<?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 deleted file mode 100644 index 8071dc8..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/Foo2Command.php +++ /dev/null @@ -1,21 +0,0 @@ -<?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 deleted file mode 100644 index 6c890fa..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/Foo3Command.php +++ /dev/null @@ -1,29 +0,0 @@ -<?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 deleted file mode 100644 index 1c54639..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/Foo4Command.php +++ /dev/null @@ -1,11 +0,0 @@ -<?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 deleted file mode 100644 index a1c6082..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/Foo5Command.php +++ /dev/null @@ -1,10 +0,0 @@ -<?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 deleted file mode 100644 index 355e0ad..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/FooCommand.php +++ /dev/null @@ -1,33 +0,0 @@ -<?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 deleted file mode 100644 index fc50c72..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/FooSubnamespaced1Command.php +++ /dev/null @@ -1,26 +0,0 @@ -<?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 deleted file mode 100644 index 1cf31ff..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/FooSubnamespaced2Command.php +++ /dev/null @@ -1,26 +0,0 @@ -<?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 deleted file mode 100644 index 9681628..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/FoobarCommand.php +++ /dev/null @@ -1,25 +0,0 @@ -<?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 deleted file mode 100644 index dcd3273..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/TestCommand.php +++ /dev/null @@ -1,28 +0,0 @@ -<?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 deleted file mode 100644 index 7f8d92e..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_1.json +++ /dev/null @@ -1 +0,0 @@ -{"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 deleted file mode 100644 index e380416..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_1.md +++ /dev/null @@ -1,199 +0,0 @@ -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 deleted file mode 100644 index f3a1968..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_1.txt +++ /dev/null @@ -1,17 +0,0 @@ -<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 deleted file mode 100644 index 1763108..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_1.xml +++ /dev/null @@ -1,108 +0,0 @@ -<?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 deleted file mode 100644 index 1655d47..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_2.json +++ /dev/null @@ -1 +0,0 @@ -{"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 deleted file mode 100644 index 7492886..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_2.md +++ /dev/null @@ -1,388 +0,0 @@ -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 deleted file mode 100644 index a640a8d..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_2.txt +++ /dev/null @@ -1,22 +0,0 @@ -<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 deleted file mode 100644 index a7d65b4..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_2.xml +++ /dev/null @@ -1,185 +0,0 @@ -<?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 deleted file mode 100644 index d9734fe..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_astext1.txt +++ /dev/null @@ -1,20 +0,0 @@ -<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 deleted file mode 100644 index 49992cf..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_astext2.txt +++ /dev/null @@ -1,16 +0,0 @@ -<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 deleted file mode 100644 index d956781..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_asxml1.txt +++ /dev/null @@ -1,144 +0,0 @@ -<?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 deleted file mode 100644 index 0b30b20..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_asxml2.txt +++ /dev/null @@ -1,37 +0,0 @@ -<?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 deleted file mode 100644 index 0c16e3c..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_gethelp.txt +++ /dev/null @@ -1 +0,0 @@ -<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 deleted file mode 100644 index 4629345..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception1.txt +++ /dev/null @@ -1,8 +0,0 @@ - - - - [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 deleted file mode 100644 index c758129..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception2.txt +++ /dev/null @@ -1,11 +0,0 @@ - - - - [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 deleted file mode 100644 index 72a7286..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception3.txt +++ /dev/null @@ -1,27 +0,0 @@ - - - - [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 deleted file mode 100644 index b44d50b..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception3decorated.txt +++ /dev/null @@ -1,27 +0,0 @@ - - -[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 deleted file mode 100644 index 19f893b..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception4.txt +++ /dev/null @@ -1,9 +0,0 @@ - - - - [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 deleted file mode 100644 index 6a98660..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception_doublewidth1.txt +++ /dev/null @@ -1,11 +0,0 @@ - - - - [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 deleted file mode 100644 index 8c8801b..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception_doublewidth1decorated.txt +++ /dev/null @@ -1,11 +0,0 @@ - - -[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 deleted file mode 100644 index 545cd7b..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_renderexception_doublewidth2.txt +++ /dev/null @@ -1,12 +0,0 @@ - - - - [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 deleted file mode 100644 index 9bd08b5..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_run1.txt +++ /dev/null @@ -1,17 +0,0 @@ -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 deleted file mode 100644 index 6963c0f..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_run2.txt +++ /dev/null @@ -1,29 +0,0 @@ -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 deleted file mode 100644 index 0139775..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_run3.txt +++ /dev/null @@ -1,27 +0,0 @@ -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 deleted file mode 100644 index 47187fc..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/application_run4.txt +++ /dev/null @@ -1 +0,0 @@ -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 deleted file mode 100644 index 0c1675d..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_1.json +++ /dev/null @@ -1 +0,0 @@ -{"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 deleted file mode 100644 index 2cef9a2..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_1.md +++ /dev/null @@ -1,8 +0,0 @@ -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 deleted file mode 100644 index 2375ac0..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_1.txt +++ /dev/null @@ -1,7 +0,0 @@ -<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 deleted file mode 100644 index dcfa6fa..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_1.xml +++ /dev/null @@ -1,12 +0,0 @@ -<?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 deleted file mode 100644 index 493b584..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_2.json +++ /dev/null @@ -1 +0,0 @@ -{"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 deleted file mode 100644 index 5257c0d..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_2.md +++ /dev/null @@ -1,30 +0,0 @@ -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 deleted file mode 100644 index 1da9f3d..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_2.txt +++ /dev/null @@ -1,11 +0,0 @@ -<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 deleted file mode 100644 index c411c36..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_2.xml +++ /dev/null @@ -1,18 +0,0 @@ -<?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 deleted file mode 100644 index 5d70351..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_astext.txt +++ /dev/null @@ -1,18 +0,0 @@ -<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 deleted file mode 100644 index 57542fa..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/command_asxml.txt +++ /dev/null @@ -1,38 +0,0 @@ -<?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 deleted file mode 100644 index a7d7e0d..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/definition_astext.txt +++ /dev/null @@ -1,11 +0,0 @@ -<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 deleted file mode 100644 index eec8c07..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/definition_asxml.txt +++ /dev/null @@ -1,39 +0,0 @@ -<?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 deleted file mode 100644 index b8173b6..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_1.json +++ /dev/null @@ -1 +0,0 @@ -{"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 deleted file mode 100644 index 88f311a..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_1.md +++ /dev/null @@ -1,7 +0,0 @@ -**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 deleted file mode 100644 index 111e515..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_1.txt +++ /dev/null @@ -1 +0,0 @@ - <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 deleted file mode 100644 index cb37f81..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_1.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?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 deleted file mode 100644 index ef06b09..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_2.json +++ /dev/null @@ -1 +0,0 @@ -{"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 deleted file mode 100644 index 3cdb00c..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_2.md +++ /dev/null @@ -1,7 +0,0 @@ -**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 deleted file mode 100644 index 9497b1c..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_2.txt +++ /dev/null @@ -1 +0,0 @@ - <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 deleted file mode 100644 index 629da5a..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_2.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?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 deleted file mode 100644 index de8484e..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_3.json +++ /dev/null @@ -1 +0,0 @@ -{"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 deleted file mode 100644 index be1c443..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_3.md +++ /dev/null @@ -1,7 +0,0 @@ -**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 deleted file mode 100644 index c421fc9..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_3.txt +++ /dev/null @@ -1 +0,0 @@ - <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 deleted file mode 100644 index 399a5c8..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_argument_3.xml +++ /dev/null @@ -1,7 +0,0 @@ -<?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 deleted file mode 100644 index c7a7d83..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_1.json +++ /dev/null @@ -1 +0,0 @@ -{"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 deleted file mode 100644 index e69de29..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_1.md +++ /dev/null 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 deleted file mode 100644 index e69de29..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_1.txt +++ /dev/null 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 deleted file mode 100644 index b5481ce..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_1.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?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 deleted file mode 100644 index 9964a55..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_2.json +++ /dev/null @@ -1 +0,0 @@ -{"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 deleted file mode 100644 index 923191c..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_2.md +++ /dev/null @@ -1,9 +0,0 @@ -### 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 deleted file mode 100644 index 0db9f66..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_2.txt +++ /dev/null @@ -1,2 +0,0 @@ -<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 deleted file mode 100644 index 102efc1..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_2.xml +++ /dev/null @@ -1,10 +0,0 @@ -<?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 deleted file mode 100644 index 6a86056..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_3.json +++ /dev/null @@ -1 +0,0 @@ -{"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 deleted file mode 100644 index 40fd7b0..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_3.md +++ /dev/null @@ -1,11 +0,0 @@ -### 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 deleted file mode 100644 index c6fb2cc..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_3.txt +++ /dev/null @@ -1,2 +0,0 @@ -<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 deleted file mode 100644 index bc95151..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_3.xml +++ /dev/null @@ -1,9 +0,0 @@ -<?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 deleted file mode 100644 index c5a0019..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_4.json +++ /dev/null @@ -1 +0,0 @@ -{"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 deleted file mode 100644 index a31feea..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_4.md +++ /dev/null @@ -1,21 +0,0 @@ -### 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 deleted file mode 100644 index e17c61c..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_4.txt +++ /dev/null @@ -1,5 +0,0 @@ -<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 deleted file mode 100644 index cffceec..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_definition_4.xml +++ /dev/null @@ -1,14 +0,0 @@ -<?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 deleted file mode 100644 index 60c5b56..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_1.json +++ /dev/null @@ -1 +0,0 @@ -{"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 deleted file mode 100644 index 6f9e9a7..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_1.md +++ /dev/null @@ -1,9 +0,0 @@ -**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 deleted file mode 100644 index daf83d0..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_1.txt +++ /dev/null @@ -1 +0,0 @@ - <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 deleted file mode 100644 index 8a64ea6..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_1.xml +++ /dev/null @@ -1,4 +0,0 @@ -<?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 deleted file mode 100644 index 04e4228..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_2.json +++ /dev/null @@ -1 +0,0 @@ -{"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 deleted file mode 100644 index 634ac0b..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_2.md +++ /dev/null @@ -1,9 +0,0 @@ -**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 deleted file mode 100644 index 627e3c1..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_2.txt +++ /dev/null @@ -1 +0,0 @@ - <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 deleted file mode 100644 index 4afac5b..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_2.xml +++ /dev/null @@ -1,7 +0,0 @@ -<?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 deleted file mode 100644 index c1ea120..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_3.json +++ /dev/null @@ -1 +0,0 @@ -{"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 deleted file mode 100644 index 3428289..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_3.md +++ /dev/null @@ -1,9 +0,0 @@ -**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 deleted file mode 100644 index b88b12d..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_3.txt +++ /dev/null @@ -1 +0,0 @@ - <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 deleted file mode 100644 index dcc0631..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_3.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?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 deleted file mode 100644 index 1b671d8..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_4.json +++ /dev/null @@ -1 +0,0 @@ -{"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 deleted file mode 100644 index 8ffba56..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_4.md +++ /dev/null @@ -1,9 +0,0 @@ -**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 deleted file mode 100644 index 5dba5e6..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_4.txt +++ /dev/null @@ -1 +0,0 @@ - <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 deleted file mode 100644 index 5e2418b..0000000 --- a/Aufgabe06/vendor/symfony/console/Symfony/Component/Console/Tests/Fixtures/input_option_4.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?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> |
