1
0
Fork 0

CI match on package names

pull/1/head
Jordi Boggiano 2011-06-05 22:09:05 +02:00
parent 2e41993822
commit 04783d5c30
1 changed files with 1 additions and 1 deletions

View File

@ -41,7 +41,7 @@ class InstallCommand
// TODO this should use the transaction returned by the solver
foreach ($config['require'] as $name => $version) {
foreach ($packages as $pkg) {
if ($pkg->getName() === $name) {
if (strtolower($pkg->getName()) === strtolower($name)) {
$package = $pkg;
break;
}