From b32671e9f9796dc7340471c326dc78bc86c14407 Mon Sep 17 00:00:00 2001 From: Eric Defore Date: Thu, 10 Sep 2026 14:11:12 -0400 Subject: [PATCH] Pin config.platform.php to the full patch version config.platform is not a dependency constraint -- it declares the exact PHP version Composer resolves against, so "7.4" means 7.4.0. A package requiring php >=7.4.1 is excluded under that pin and Composer silently resolves an older release of it instead. Nothing in the current tree was being held back: composer update --lock reports no change. The pin is preventative, for the next dependency added. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index f5bbcb9..8384b6d 100644 --- a/composer.json +++ b/composer.json @@ -59,7 +59,7 @@ "optimize-autoloader": true, "preferred-install": "dist", "platform": { - "php": "7.4" + "php": "7.4.33" }, "allow-plugins": {} }