Merge remote-tracking branch 'stof/fix_why_not' into 1.10

main
Jordi Boggiano 4 years ago
commit 28c7e38411
No known key found for this signature in database
GPG Key ID: 7BBD42C429EC80BC

@ -146,6 +146,16 @@ abstract class BaseRepository implements RepositoryInterface
}
$version = new Constraint('=', $pkg->getVersion());
if ($link->getTarget() !== $pkg->getName()) {
foreach (array_merge($pkg->getReplaces(), $pkg->getProvides()) as $prov) {
if ($link->getTarget() === $prov->getTarget()) {
$version = $prov->getConstraint();
break;
}
}
}
if (!$link->getConstraint()->matches($version)) {
// if we have a root package (we should but can not guarantee..) we show
// the root requires as well to perhaps allow to find an issue there
@ -157,6 +167,7 @@ abstract class BaseRepository implements RepositoryInterface
continue 3;
}
}
$results[] = array($package, $link, false);
$results[] = array($rootPackage, new Link($rootPackage->getName(), $link->getTarget(), null, 'does not require', 'but ' . $pkg->getPrettyVersion() . ' is installed'), false);
} else {

Loading…
Cancel
Save