From bd57c4b851c26d30dcf14a331980f4d1a117578d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gerg=C5=91=20Tisza?= Date: Mon, 18 Jul 2022 19:24:05 -0700 Subject: [PATCH] Allow composer/installers plugin `composer update --no-interactive` errors out if this flag is not set. Setting it to true, as that was the status quo before Composer 2.2. Bug: T298283 Change-Id: I9805e130a0fd8f9871693a08eec9a35194f19e4e --- composer.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/composer.json b/composer.json index e969e0fb..046f5f8b 100644 --- a/composer.json +++ b/composer.json @@ -54,5 +54,10 @@ "test:size": "phpunit -c ../../phpunit.xml.dist tests/phpunit/structure/BundleSizeTest.php --verbose", "phan": "phan -d . --long-progress-bar", "phpcs": "phpcs -sp --cache" + }, + "config": { + "allow-plugins": { + "composer/installers": true + } } }