From eba490f94d092e6e2772c0665789d4d09ad21973 Mon Sep 17 00:00:00 2001 From: Brian Weaver <87093053+namespacebrian@users.noreply.github.com> Date: Thu, 5 Feb 2026 16:59:50 -0500 Subject: [PATCH] Fix Composer 2.9 plugin installation failure Composer 2.9 introduced a new default behavior that blocks installation when dependencies have security advisories. This causes terminus plugin installation to fail even when the advisories are not directly relevant. Add config.audit.block-insecure=false to allow plugin installation to proceed, matching the fix applied to terminus core. --- composer.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/composer.json b/composer.json index bc28744..dad9744 100644 --- a/composer.json +++ b/composer.json @@ -34,5 +34,10 @@ "terminus": { "compatible-version": "^3 || ^4" } + }, + "config": { + "audit": { + "block-insecure": false + } } }