1
0
Fork 0

Merge pull request #648 from fabpot/fix-version

Fix for when the version is explicitely set in the composer.json file

Fixes #647
pull/644/merge
Nils Adermann 2012-05-01 04:14:30 -07:00
commit 157b0bdecc
1 changed files with 2 additions and 0 deletions

View File

@ -54,6 +54,8 @@ class RootPackageLoader extends ArrayLoader
} }
$config['version'] = $version; $config['version'] = $version;
} else {
$version = $config['version'];
} }
$package = parent::load($config); $package = parent::load($config);