소스 검색

Show include path in show command

Jordi Boggiano 12 년 전
부모
커밋
5edb49c067
1개의 변경된 파일4개의 추가작업 그리고 0개의 파일을 삭제
  1. 4 0
      src/Composer/Command/ShowCommand.php

+ 4 - 0
src/Composer/Command/ShowCommand.php

@@ -190,6 +190,10 @@ EOT
                     $output->writeln(implode(', ', $autoloads));
                 }
             }
+            if ($package->getIncludePaths()) {
+                $output->writeln('<comment>include-path</comment>');
+                $output->writeln(implode(', ', $package->getIncludePaths()));
+            }
         }
     }