Эх сурвалжийг харах

Fix undefined index error, fixes #2224

Jordi Boggiano 11 жил өмнө
parent
commit
80184b87d1

+ 1 - 1
src/Composer/Command/CreateProjectCommand.php

@@ -275,7 +275,7 @@ EOT
         }
 
         // select highest version if we have many
-        $package = $candidates[0];
+        $package = reset($candidates);
         foreach ($candidates as $candidate) {
             if (version_compare($package->getVersion(), $candidate->getVersion(), '<')) {
                 $package = $candidate;