From e8b2f94a9d50be727fb5a6269390bc6e338eab55 Mon Sep 17 00:00:00 2001 From: Ben Sherred Date: Tue, 3 Sep 2024 10:42:02 +0100 Subject: [PATCH] chore: drop laravel 9 and 10 support --- .github/workflows/tests.yml | 5 ++--- composer.json | 6 +++--- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 05ea32c..cd90559 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -6,12 +6,11 @@ jobs: test: runs-on: ubuntu-latest - # we want to run it on supported combination of Laravel and PHP versions strategy: fail-fast: false matrix: - php: ['8.1', '8.2'] - laravel: ['^9.0', '^10.0'] + php: [ '8.2', '8.3' ] + laravel: [ '^11.0' ] steps: - name: Checkout the repo diff --git a/composer.json b/composer.json index 20167b8..2ed29bb 100644 --- a/composer.json +++ b/composer.json @@ -20,12 +20,12 @@ } ], "require": { - "php": "^8.1 || ^8.2", + "php": "^8.2", "ext-json": "*", - "laravel/framework": "^9.0 || ^10.0" + "laravel/framework": "^11.0" }, "require-dev": { - "orchestra/testbench": "^7.0 || ^8.0", + "orchestra/testbench": "^9.0", "tmarsteel/mockery-callable-mock": "~2.1", "netsells/code-standards-laravel": "^1.1" },