From 5ae3081d58b982e821302bc3f65a191881282399 Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 16 May 2026 15:06:14 +0000 Subject: [PATCH] Allow symfony/runtime plugin to be blocked in composer config Drupal Core added symfony/runtime as a dependency, which is a Composer plugin that must be explicitly listed in allow-plugins. Setting it to false suppresses the blocking error without granting unnecessary plugin execution in this dev-only context. https://claude.ai/code/session_01VZBvQ1ks9YiyHK1HGMk8Mf --- composer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 66f8f419..926bb508 100644 --- a/composer.json +++ b/composer.json @@ -71,7 +71,8 @@ "composer/installers": true, "phpstan/extension-installer": true, "dealerdirect/phpcodesniffer-composer-installer": true, - "drupal/core-composer-scaffold": false + "drupal/core-composer-scaffold": false, + "symfony/runtime": false } } }