From 430ec13f86cf90da1963288aee700c4658468b72 Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Fri, 8 Dec 2023 16:18:36 +0000 Subject: [PATCH] Adds Laravel 11 support (#34) --- .github/workflows/tests.yml | 2 +- composer.json | 12 ++++++------ 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 009b535c..a8d20057 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -29,7 +29,7 @@ jobs: fail-fast: true matrix: php: [8.2, 8.3] - laravel: [10] + laravel: [10, 11] name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} diff --git a/composer.json b/composer.json index 7b12016b..58b5116c 100644 --- a/composer.json +++ b/composer.json @@ -19,16 +19,16 @@ "aws/aws-sdk-php": "^3.241", "clue/redis-react": "^2.6", "guzzlehttp/psr7": "^2.6", - "illuminate/console": "^10.0", - "illuminate/contracts": "^10.0", - "illuminate/http": "^10.0", - "illuminate/support": "^10.0", + "illuminate/console": "^10.0|^11.0", + "illuminate/contracts": "^10.0|^11.0", + "illuminate/http": "^10.0|^11.0", + "illuminate/support": "^10.0|^11.0", "ratchet/rfc6455": "^0.3.1", "react/socket": "^1.14", - "symfony/http-foundation": "^6.3" + "symfony/http-foundation": "^6.3|^7.0" }, "require-dev": { - "orchestra/testbench": "^8.0", + "orchestra/testbench": "^8.0|^9.0", "pestphp/pest": "^2.0", "phpstan/phpstan": "^1.10", "ratchet/pawl": "^0.4.1",