Merge branch '1.10'
commit
fc462ab978
|
@ -60,7 +60,7 @@ class ClassLoader
|
|||
public function getPrefixes()
|
||||
{
|
||||
if (!empty($this->prefixesPsr0)) {
|
||||
return call_user_func_array('array_merge', $this->prefixesPsr0);
|
||||
return call_user_func_array('array_merge', array_values($this->prefixesPsr0));
|
||||
}
|
||||
|
||||
return array();
|
||||
|
|
|
@ -993,7 +993,7 @@ class ComposerRepository extends ArrayRepository implements ConfigurableReposito
|
|||
|
||||
if (isset($data['includes'])) {
|
||||
foreach ($data['includes'] as $include => $metadata) {
|
||||
if ($this->cache->sha1($include) === $metadata['sha1']) {
|
||||
if (isset($metadata['sha1']) && $this->cache->sha1($include) === $metadata['sha1']) {
|
||||
$includedData = json_decode($this->cache->read($include), true);
|
||||
} else {
|
||||
$includedData = $this->fetchFile($include);
|
||||
|
|
Loading…
Reference in New Issue