1
0
Fork 0
pull/3917/head
Rob Bast 2015-04-08 14:25:53 +02:00
parent 213d4803ac
commit 117b7ea033
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ class VersionSelector
public function findBestCandidate($packageName, $targetPackageVersion = null) public function findBestCandidate($packageName, $targetPackageVersion = null)
{ {
$constraint = $targetPackageVersion ? $this->getParser()->parseConstraints($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) { if (!$candidates) {
return false; return false;