From ec71674826de35a8bed8642a1b49d0acef1d43d4 Mon Sep 17 00:00:00 2001 From: Joshua Estes Date: Mon, 1 Oct 2012 09:19:20 -0500 Subject: [PATCH] added empty configuration command and updated the application class to pull it in for display --- src/Composer/Command/ConfigCommand.php | 35 ++++++++++++++++++++++++++ src/Composer/Console/Application.php | 1 + 2 files changed, 36 insertions(+) create mode 100644 src/Composer/Command/ConfigCommand.php diff --git a/src/Composer/Command/ConfigCommand.php b/src/Composer/Command/ConfigCommand.php new file mode 100644 index 000000000..7c188ebb9 --- /dev/null +++ b/src/Composer/Command/ConfigCommand.php @@ -0,0 +1,35 @@ + + * Jordi Boggiano + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Composer\Command; + +use Symfony\Component\Console\Input\InputInterface; +use Symfony\Component\Console\Output\OutputInterface; + +class ConfigCommand extends Command +{ + protected function configure() + { + $this + ->setName('config') + ->setDescription('Manage config settings') + ->setHelp(<<