From e5d9a66e84dce081caa60a11a33f16a467639d86 Mon Sep 17 00:00:00 2001 From: Michael Umfahrer Date: Fri, 15 Mar 2024 17:00:43 +0100 Subject: [PATCH] Add support for Laravel 11 --- composer.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/composer.json b/composer.json index 5c856fa..304bdfe 100644 --- a/composer.json +++ b/composer.json @@ -16,11 +16,11 @@ "require": { "php": "^7.4|^8.0", "ext-intl": "*", - "illuminate/support": "^8.0|^9.0|^10.0", - "illuminate/database": "^8.0|^9.0|^10.0", - "illuminate/collections": "^8.0|^9.0|^10.0", - "illuminate/http": "^8.0|^9.0|^10.0", - "illuminate/view": "^8.0|^9.0|^10.0", + "illuminate/support": "^8.0|^9.0|^10.0|^11.0", + "illuminate/database": "^8.0|^9.0|^10.0|^11.0", + "illuminate/collections": "^8.0|^9.0|^10.0|^11.0", + "illuminate/http": "^8.0|^9.0|^10.0|^11.0", + "illuminate/view": "^8.0|^9.0|^10.0|^11.0", "jenssegers/agent": "^2.6" }, "autoload": { @@ -44,7 +44,7 @@ "minimum-stability": "dev", "prefer-stable": true, "require-dev": { - "orchestra/testbench": "6.0", - "phpunit/phpunit": "^9.5" + "orchestra/testbench": "6.0|^9.0", + "phpunit/phpunit": "^9.5|^11.0" } }