From a2bac5107fa7344b6ceac397843a17011a82eb24 Mon Sep 17 00:00:00 2001 From: CosmicAlpha Date: Sat, 9 Dec 2023 05:38:19 -0700 Subject: [PATCH] Fix support for composer 2.2.1+ (#66) Composer 2.2.1+ requires plugins to be allowed --- composer.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/composer.json b/composer.json index ae8616a..99096fd 100644 --- a/composer.json +++ b/composer.json @@ -44,5 +44,10 @@ "require-dev": { "vimeo/psalm": "*", "phpstan/phpstan": "^1.0.0" + }, + "config": { + "allow-plugins": { + "composer/installers": true + } } }