From 7c4a433edc0f4f9901d091d9f2c6b7c593a2bb07 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Mike=C5=A1?= Date: Thu, 29 Feb 2024 15:10:27 +0100 Subject: [PATCH] Allow Symfony 7.0 component --- src/Implementations/Psr6/Caches.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Implementations/Psr6/Caches.php b/src/Implementations/Psr6/Caches.php index 9f913a6..c779c10 100644 --- a/src/Implementations/Psr6/Caches.php +++ b/src/Implementations/Psr6/Caches.php @@ -41,13 +41,13 @@ public static function allCandidates(): CandidatesCollection self::$extendedCandidates->add(CandidateEntity::create( package: 'symfony/cache', - version: '^3.1 | ^4.0 | ^5.0 | ^6.0', + version: '^3.1 | ^4.0 | ^5.0 | ^6.0 | ^7.0', builder: static fn () => null, )); self::$extendedCandidates->add(CandidateEntity::create( package: 'symfony/symfony', - version: '^3.1.4 | ^4.0 | ^5.0 | ^6.0', + version: '^3.1.4 | ^4.0 | ^5.0 | ^6.0 | ^7.0', builder: static fn () => null, ));