Merge pull request #8375 from mathiasdonoso/feature/add-homepage-to-package-information-command

added package homepage information to the command 'show'
main
Jordi Boggiano 5 years ago committed by GitHub
commit b311b2c077
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -590,6 +590,7 @@ EOT
}
$io->write('<info>type</info> : ' . $package->getType());
$this->printLicenses($package);
$io->write('<info>homepage</info> : ' . $package->getHomepage());
$io->write('<info>source</info> : ' . sprintf('[%s] <comment>%s</comment> %s', $package->getSourceType(), $package->getSourceUrl(), $package->getSourceReference()));
$io->write('<info>dist</info> : ' . sprintf('[%s] <comment>%s</comment> %s', $package->getDistType(), $package->getDistUrl(), $package->getDistReference()));
if ($installedRepo->hasPackage($package)) {

Loading…
Cancel
Save