From 36474ffd2180170856fd05f6003c946064959629 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuel=20=C5=A0tancl?= Date: Sat, 27 Jan 2024 23:01:45 +0100 Subject: [PATCH] Laravel 11 support --- .github/workflows/ci.yml | 2 ++ composer.json | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 222a8b3..890dd56 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,6 +13,8 @@ jobs: php: 8.0 - laravel: 10 php: 8.1 + - laravel: 11 + php: 8.3 steps: - name: Checkout code diff --git a/composer.json b/composer.json index 3a18139..3a9ef1a 100644 --- a/composer.json +++ b/composer.json @@ -20,10 +20,10 @@ }, "require": { "php": "^8.0", - "illuminate/support": "^9.0|^10.0" + "illuminate/support": "^9.0|^10.0|^11.0" }, "require-dev": { - "orchestra/testbench": "^7.0|^8.0", + "orchestra/testbench": "^7.0|^8.0|^9.0", "spatie/valuestore": "^1.2", "ext-redis": "*" },