From fc24865f92491d1933c3d884aa74bcd7638a9c51 Mon Sep 17 00:00:00 2001 From: Quentin Briais Date: Mon, 22 Jun 2026 14:04:48 +0200 Subject: [PATCH] Harden composer constraints for Symfony 6.4/7.x + PHP 8.2-8.4 - php: ^8.0 -> ^8.2 (Symfony 7 baseline, aligns with target PHP 8.4) - framework-bundle/validator: ^6.0||^7.0 -> ^6.4||^7.0 (LTS floor) - phpunit: ^9.6 -> ^9.6||^11.0 (PHP 8.4 toolchain support) Code is already SF7-compatible upstream (native return types, #[AsCommand], typed Form types). This only tightens the manifest to the migration target. --- composer.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 91fafed..2f11319 100644 --- a/composer.json +++ b/composer.json @@ -10,13 +10,13 @@ } ], "require": { - "php": "^8.0", - "symfony/framework-bundle": "^6.0 || ^7.0", - "symfony/validator": "^6.0 || ^7.0", + "php": "^8.2", + "symfony/framework-bundle": "^6.4 || ^7.0", + "symfony/validator": "^6.4 || ^7.0", "twig/twig": "^3.0" }, "require-dev": { - "phpunit/phpunit": "^9.6" + "phpunit/phpunit": "^9.6 || ^11.0" }, "autoload": { "psr-4": { "Sherlockode\\ConfigurationBundle\\": "" }