1
0
Fork 0

Plugin API requirements should be for plugins only, not installers

pull/2245/head
Nils Adermann 2013-09-06 17:45:22 +02:00
parent f69a47066d
commit 689e3056fa
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ class PluginManager
protected function loadRepository(RepositoryInterface $repo)
{
foreach ($repo->getPackages() as $package) {
if ('composer-plugin' === $package->getType() || 'composer-installer' === $package->getType()) {
if ('composer-plugin' === $package->getType()) {
$requiresComposer = null;
foreach ($package->getRequires() as $link) {
if ($link->getTarget() == 'composer-plugin-api') {