From 58ed81574a4d611cbd1e8131b851f086c8699a40 Mon Sep 17 00:00:00 2001 From: Tom de Wit Date: Wed, 29 Nov 2023 14:04:59 +0100 Subject: [PATCH] Add Symfony 7 support Add ^7.0 version constraint to Symfony Cache and Symfony HTTP foundation packages, plus the PSR HTTP message bridge. --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index d591f97..7ac3191 100644 --- a/composer.json +++ b/composer.json @@ -30,9 +30,9 @@ "psr/cache": "^1.0 || ^2.0 || ^3.0", "psr/http-message": "^1.0", "psr/simple-cache": "^1.0 || ^2.0 || ^3.0", - "symfony/cache": "^5.0.9 || ^6.0", - "symfony/http-foundation": "^5.0.9 || ^6.0", - "symfony/psr-http-message-bridge": "^2.0.1" + "symfony/cache": "^5.0.9 || ^6.0 || ^7.0", + "symfony/http-foundation": "^5.0.9 || ^6.0 || ^7.0", + "symfony/psr-http-message-bridge": "^2.0.1 || ^7.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.17",