From 3d37b4e5813e88deddedd8111e9081b72e140265 Mon Sep 17 00:00:00 2001 From: ankurk91 Date: Tue, 5 Mar 2024 13:06:23 +0530 Subject: [PATCH] allow laravel 11 --- .github/workflows/tests.yml | 7 ++----- composer.json | 12 ++++++------ 2 files changed, 8 insertions(+), 11 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 0d9ca19..94a2f27 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -20,11 +20,8 @@ jobs: strategy: fail-fast: false matrix: - php: [ 8.1, 8.2, 8.3 ] - laravel: [ 9, 10 ] - exclude: - - php: 8.3 - laravel: 9 + php: [ 8.2, 8.3 ] + laravel: [ 10, 11 ] name: PHP v${{ matrix.php }} - Laravel v${{ matrix.laravel }} diff --git a/composer.json b/composer.json index 02703b0..a506176 100644 --- a/composer.json +++ b/composer.json @@ -20,13 +20,13 @@ } ], "require": { - "php": "^8.1", + "php": "^8.2", "guzzlehttp/guzzle": "^7.4", - "illuminate/http": "^9.34 || ^10", - "illuminate/log": "^9.34 || ^10", - "illuminate/events": "^9.34 || ^10", - "illuminate/notifications": "^9.34 || ^10", - "illuminate/support": "^9.34 || ^10" + "illuminate/http": "^10 || ^11", + "illuminate/log": "^10 || ^11", + "illuminate/events": "^10 || ^11", + "illuminate/notifications": "^10 || ^11", + "illuminate/support": "^10 || ^11" }, "require-dev": { "mockery/mockery": "^1.4.0",