From 32bd30922fd45b496d283082084f5bfa2ad5fe74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Zachar?= Date: Fri, 29 May 2026 14:41:03 +0200 Subject: [PATCH] Add 'allow-plugins' section to composer.json Without this section, current latest composer 2.10.0 fails with ``` In PluginManager.php line 746: Your composer.lock was generated before the allow-plugins security feature was introduced and your composer.json does not define allow-plugins. Run "c omposer update --lock" locally and commit the updated composer.lock, then a dd an explicit allow-plugins section to composer.json. See https://getcompo ser.org/allow-plugins ``` --- composer.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/composer.json b/composer.json index a058fcc36..064c61c68 100644 --- a/composer.json +++ b/composer.json @@ -50,6 +50,9 @@ "sort-packages": true, "platform": { "php": "7.2" + }, + "allow-plugins": { + "cakephp/plugin-installer": true } } }