1
0
Fork 0

Fix lock handling of aliases

pull/582/head
Jordi Boggiano 2012-04-15 19:12:00 +02:00
parent bac5a6ffc7
commit 7312c62c5d
1 changed files with 4 additions and 0 deletions

View File

@ -169,6 +169,10 @@ class Locker
$locked = array();
foreach ($packages as $package) {
if ($package instanceof AliasPackage) {
$package = $package->getAliasOf();
}
$name = $package->getPrettyName();
$version = $package->getPrettyVersion();