1
0
Fork 0

Show include path in show command

pull/747/merge
Jordi Boggiano 2012-05-31 14:36:34 +02:00
parent 03ded63924
commit 5edb49c067
1 changed files with 4 additions and 0 deletions

View File

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