From 8cfc48ccd032f71abc0baf60c487219e64942974 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Mon, 2 Jun 2025 16:08:14 +0200 Subject: [PATCH 1/2] Allow Symfony ^8.0 --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index c2bfed1..6129d76 100644 --- a/composer.json +++ b/composer.json @@ -17,12 +17,12 @@ ], "require": { "php": ">=8.2", - "symfony/security-core": "^6.4|^7.0" + "symfony/security-core": "^6.4|^7.0|^8.0" }, "require-dev": { "psr/log": "^1|^2|^3", - "symfony/http-foundation": "^6.4|^7.0", - "symfony/http-kernel": "^6.4|^7.0" + "symfony/http-foundation": "^6.4|^7.0|^8.0", + "symfony/http-kernel": "^6.4|^7.0|^8.0" }, "conflict": { "symfony/http-foundation": "<6.4" From 88cf0188c6883587429f5181e0394febbf9e273d Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Mon, 2 Jun 2025 17:50:55 +0200 Subject: [PATCH 2/2] Bump Symfony 8 to PHP >= 8.4 --- composer.json | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/composer.json b/composer.json index 6129d76..89d6a11 100644 --- a/composer.json +++ b/composer.json @@ -16,16 +16,13 @@ } ], "require": { - "php": ">=8.2", - "symfony/security-core": "^6.4|^7.0|^8.0" + "php": ">=8.4", + "symfony/security-core": "^7.4|^8.0" }, "require-dev": { "psr/log": "^1|^2|^3", - "symfony/http-foundation": "^6.4|^7.0|^8.0", - "symfony/http-kernel": "^6.4|^7.0|^8.0" - }, - "conflict": { - "symfony/http-foundation": "<6.4" + "symfony/http-foundation": "^7.4|^8.0", + "symfony/http-kernel": "^7.4|^8.0" }, "autoload": { "psr-4": { "Symfony\\Component\\Security\\Csrf\\": "" },