From 9334d757a5d1311ce457e17580b962af7b0f9599 Mon Sep 17 00:00:00 2001 From: Marcus Olsson Date: Thu, 4 Apr 2024 08:28:26 +0200 Subject: [PATCH] Add support for Laravel 11 Co-authored-by: Chris Lloyd --- .github/workflows/test.yml | 4 ++++ composer.json | 5 ++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 04d716c..0490186 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,6 +13,10 @@ jobs: strategy: matrix: include: + - php: 8.3 + illuminate: ^11.0 + - php: 8.2 + illuminate: ^11.0 - php: 8.2 illuminate: ^10.0 - php: 8.1 diff --git a/composer.json b/composer.json index 6df15db..06df473 100644 --- a/composer.json +++ b/composer.json @@ -21,13 +21,12 @@ ], "require": { "php": "^7.4|^8.0", - "illuminate/support": "^7.0|^8.0|^9.0|^10.0", + "illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0", "bjeavons/zxcvbn-php": "^1.2" }, "require-dev": { - "phpunit/phpunit": "^8.0|^9.0", "orchestra/testbench": ">=4.0", - "pestphp/pest": "^1.22", + "pestphp/pest": "^1.22|^2.0", "squizlabs/php_codesniffer": "^3.7" }, "autoload": {