diff --git a/src/Composer/Command/HelpCommand.php b/src/Composer/Command/AboutCommand.php similarity index 84% rename from src/Composer/Command/HelpCommand.php rename to src/Composer/Command/AboutCommand.php index 1b2546f9e..9c6f27b91 100644 --- a/src/Composer/Command/HelpCommand.php +++ b/src/Composer/Command/AboutCommand.php @@ -18,15 +18,15 @@ use Symfony\Component\Console\Output\OutputInterface; /** * @author Jordi Boggiano */ -class HelpCommand extends Command +class AboutCommand extends Command { protected function configure() { $this - ->setName('help') - ->setDescription('') + ->setName('about') + ->setDescription('Short information about Composer') ->setHelp(<<php composer.phar help +php composer.phar about EOT ) ; diff --git a/src/Composer/Console/Application.php b/src/Composer/Console/Application.php index 034845b91..a5fbbd6ad 100644 --- a/src/Composer/Console/Application.php +++ b/src/Composer/Console/Application.php @@ -63,7 +63,7 @@ class Application extends BaseApplication */ protected function registerCommands() { - $this->add(new Command\HelpCommand()); + $this->add(new Command\AboutCommand()); $this->add(new Command\InstallCommand()); $this->add(new Command\UpdateCommand()); $this->add(new Command\DebugPackagesCommand());