From 395903863bf0659d074c900f0b162e21bd4e5212 Mon Sep 17 00:00:00 2001 From: Alexander Schwenn Date: Thu, 15 Jan 2015 22:33:31 +0100 Subject: [PATCH] Add 'info' alias for 'show' command --- src/Composer/Command/ShowCommand.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Composer/Command/ShowCommand.php b/src/Composer/Command/ShowCommand.php index 28ea81028..907e99f90 100644 --- a/src/Composer/Command/ShowCommand.php +++ b/src/Composer/Command/ShowCommand.php @@ -41,6 +41,7 @@ class ShowCommand extends Command { $this ->setName('show') + ->setAliases(array('info')) ->setDescription('Show information about packages') ->setDefinition(array( new InputArgument('package', InputArgument::OPTIONAL, 'Package to inspect'),