Don’t add github specials if there is no composer data

This can happen if an identifier doesn’t have a composer.json file (but other identifiers do)
main
Pete Akins 8 years ago committed by Jordi Boggiano
parent 677e75d168
commit 95e9ad57d4

@ -152,6 +152,7 @@ class GitHubDriver extends VcsDriver
} }
$composer = $this->getBaseComposerInformation($identifier); $composer = $this->getBaseComposerInformation($identifier);
if ($composer) {
// specials for github // specials for github
if (!isset($composer['support']['source'])) { if (!isset($composer['support']['source'])) {
@ -161,6 +162,7 @@ class GitHubDriver extends VcsDriver
if (!isset($composer['support']['issues']) && $this->hasIssues) { if (!isset($composer['support']['issues']) && $this->hasIssues) {
$composer['support']['issues'] = sprintf('https://%s/%s/%s/issues', $this->originUrl, $this->owner, $this->repository); $composer['support']['issues'] = sprintf('https://%s/%s/%s/issues', $this->originUrl, $this->owner, $this->repository);
} }
}
if ($this->shouldCache($identifier)) { if ($this->shouldCache($identifier)) {
$this->cache->write($identifier, json_encode($composer)); $this->cache->write($identifier, json_encode($composer));

Loading…
Cancel
Save