From 443ce6576546b6967040887e8af71c147fb2a28f Mon Sep 17 00:00:00 2001 From: Povilas Balzaravicius Pawka Date: Tue, 17 Apr 2012 09:27:41 +0300 Subject: [PATCH] Fix fatal on show command --- src/Composer/Command/ShowCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Composer/Command/ShowCommand.php b/src/Composer/Command/ShowCommand.php index 167d34b30..f2f766f06 100644 --- a/src/Composer/Command/ShowCommand.php +++ b/src/Composer/Command/ShowCommand.php @@ -78,7 +78,7 @@ EOT $this->printMeta($input, $output, $package, $installedRepo, $repos); $this->printLinks($input, $output, $package, 'requires'); - $this->printLinks($input, $output, $package, 'recommends'); + $this->printLinks($input, $output, $package, 'devRequires'); $this->printLinks($input, $output, $package, 'replaces'); return; }