Merge pull request #3917 from alcohol/lowercase-packagename-before-lookup
Fixes #3900pull/3219/merge
commit
4d134ce8a2
|
@ -44,7 +44,7 @@ class VersionSelector
|
|||
public function findBestCandidate($packageName, $targetPackageVersion = null)
|
||||
{
|
||||
$constraint = $targetPackageVersion ? $this->getParser()->parseConstraints($targetPackageVersion) : null;
|
||||
$candidates = $this->pool->whatProvides($packageName, $constraint, true);
|
||||
$candidates = $this->pool->whatProvides(strtolower($packageName), $constraint, true);
|
||||
|
||||
if (!$candidates) {
|
||||
return false;
|
||||
|
|
Loading…
Reference in New Issue