diff --git a/composer.json b/composer.json index 4f6c0996..6522b60e 100644 --- a/composer.json +++ b/composer.json @@ -85,10 +85,7 @@ }, "config": { "process-timeout": 0, - "allow-plugins": { - "bamarni/composer-bin-plugin": true, - "composer/installers": true - } + "allow-plugins": true }, "bin": ["bin/phabel"] } diff --git a/tests/Target/ComposerTest.php b/tests/Target/ComposerTest.php index 851dd4c0..e83dc39d 100644 --- a/tests/Target/ComposerTest.php +++ b/tests/Target/ComposerTest.php @@ -51,10 +51,7 @@ public static function setUpBeforeClass(): void "name" => 'phabel/test1', "minimum-stability" => "dev", 'config' => [ - 'allow-plugins' => [ - 'phabel/phabel' => true, - 'composer/installers' => true, - ] + 'allow-plugins' => true ], 'require' => [ "php-64bit" => ">=8.0", @@ -77,10 +74,7 @@ public static function setUpBeforeClass(): void "name" => 'phabel/test2', "minimum-stability" => "dev", 'config' => [ - 'allow-plugins' => [ - 'phabel/phabel' => true, - 'composer/installers' => true, - ] + 'allow-plugins' => true ], 'require' => [ 'php' => '>=5.6' diff --git a/vendor-bin/check/composer.json b/vendor-bin/check/composer.json index 89edebdb..907bcc3b 100644 --- a/vendor-bin/check/composer.json +++ b/vendor-bin/check/composer.json @@ -8,8 +8,6 @@ "phpunit/php-code-coverage": "*" }, "config": { - "allow-plugins": { - "composer/installers": true - } + "allow-plugins": true } }