From dade314a6ffa59912345484fa8f64620a7a797ef Mon Sep 17 00:00:00 2001 From: Mamun Ahmed Date: Tue, 28 Jan 2025 10:34:29 +0600 Subject: [PATCH] feat: Add compatibility for Symfony versions up to 7.4 --- composer.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/composer.json b/composer.json index b38f6bb..04d53b0 100644 --- a/composer.json +++ b/composer.json @@ -32,12 +32,12 @@ "prefer-stable": true, "require": { "php": ">=8.0", - "symfony/framework-bundle": ">=5.0 <7.0.0", - "symfony/security-bundle": ">=5.0 <7.0.0", - "symfony/security-core": ">=5.0 <7.0.0", - "symfony/twig-bundle": ">=5.0 <7.0.0", - "symfony/form": ">=5.0 <7.0.0", - "symfony/http-foundation": ">=5.0 <7.0.0", + "symfony/framework-bundle": ">=5.0 <=7.4.0", + "symfony/security-bundle": ">=5.0 <=7.4.0", + "symfony/security-core": ">=5.0 <=7.4.0", + "symfony/twig-bundle": ">=5.0 <=7.4.0", + "symfony/form": ">=5.0 <=7.4.0", + "symfony/http-foundation": ">=5.0 <=7.4.0", "doctrine/orm": "^2.4|^3.0", "doctrine/dbal": "^3.2|^4.0" },