From 7564fa72ab4a87316660347ccd226cefc8fb0ea9 Mon Sep 17 00:00:00 2001 From: Alexander Schranz Date: Fri, 22 Nov 2024 14:47:26 +0100 Subject: [PATCH] Fix compatibility for Symfony 6 projects without doctrine/persistence 3 support (#1841) --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 0347ad01..b14faa13 100644 --- a/composer.json +++ b/composer.json @@ -39,7 +39,7 @@ "symfony/console": "^5.4 || ^6.0 || ^7.0", "symfony/dependency-injection": "^5.4 || ^6.0 || ^7.0", "symfony/deprecation-contracts": "^2.1 || ^3", - "symfony/doctrine-bridge": "^5.4.46 || ^6.4.3 || ^7.0.3", + "symfony/doctrine-bridge": "^5.4.46 || ~6.3.12 || ^6.4.3 || ^7.0.3", "symfony/framework-bundle": "^5.4 || ^6.0 || ^7.0", "symfony/polyfill-php80": "^1.15", "symfony/service-contracts": "^1.1.1 || ^2.0 || ^3"