From 56e5954e47c012b31bf41984fbe97f35b5e76930 Mon Sep 17 00:00:00 2001 From: Konstantin Kovshenin Date: Mon, 28 Nov 2022 18:17:49 +0000 Subject: [PATCH] Add composer/installers to allow-plugins Composer currently fails to run an installation with the following: ``` Error: composer/installers contains a Composer plugin which is blocked by your allow-plugins config. You may add it to the list if you consider it safe. ``` This commit allows composer/installers to run by adding it to the safe list. --- composer.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/composer.json b/composer.json index ee085ff9..9849e8d3 100644 --- a/composer.json +++ b/composer.json @@ -33,5 +33,10 @@ "scripts": { "test": "./tests/run-tests.sh", "check-types": "./vendor/bin/psalm" + }, + "config": { + "allow-plugins": { + "composer/installers": true + } } }