diff --git a/src/Composer/Command/ShowCommand.php b/src/Composer/Command/ShowCommand.php index 8027a232a..fcc311a90 100644 --- a/src/Composer/Command/ShowCommand.php +++ b/src/Composer/Command/ShowCommand.php @@ -190,6 +190,10 @@ EOT $output->writeln(implode(', ', $autoloads)); } } + if ($package->getIncludePaths()) { + $output->writeln('include-path'); + $output->writeln(implode(', ', $package->getIncludePaths())); + } } }