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(<<