From acd8c584f37badfbd45028cb0b7ca439674dd208 Mon Sep 17 00:00:00 2001 From: 7x Date: Wed, 25 Mar 2026 20:13:45 -0700 Subject: [PATCH] chore: extend PHP constraint to ^8.5 for eZ Platform 3.3 / se7enxweb fork 2.3.x branch Upstream baseline: ezsystems/ezplatform-admin-ui v2.3.34 (origin/2.3 HEAD acaa620d) Change: PHP ^7.3 || ^\8.0 -> ^7.3 || ^8.0 || ^8.1 || ^8.2 || ^8.3 || ^8.4 || ^8.5 Reason: Extend PHP range to cover PHP 8.1-8.5.4 for exponential-platform-nexus 1.1.0.x --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 689760682a..0904617005 100644 --- a/composer.json +++ b/composer.json @@ -17,7 +17,7 @@ } }, "require": { - "php": "^7.3 || ^8.0", + "php": "^7.3 || ^8.0 || ^8.1 || ^8.2 || ^8.3 || ^8.4 || ^8.5", "ext-json": "*", "symfony/http-foundation": "^5.0", "symfony/security-core": "^5.0",