Browse Source

Fix undefined index error, fixes #2224

Jordi Boggiano 11 years ago
parent
commit
80184b87d1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Composer/Command/CreateProjectCommand.php

+ 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;