From 4e512db941e0b81da5ee566663132290fd55f07d Mon Sep 17 00:00:00 2001 From: Janyk Steenbeek Date: Mon, 25 Mar 2024 17:03:45 +0100 Subject: [PATCH 1/2] Update composer.json to allow Laravel 11 --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 35a30bc..649d8c7 100644 --- a/composer.json +++ b/composer.json @@ -27,8 +27,8 @@ ], "require": { "php": "^8.1", - "illuminate/database": "^9|^10", - "illuminate/support": "^9|^10", + "illuminate/database": "^9|^10|^11", + "illuminate/support": "^9|^10|^11", "nesbot/carbon": ">=2.62.1" }, "require-dev": { From a8638efdd2e6cd162f3155be4a04a572c6b3609a Mon Sep 17 00:00:00 2001 From: Janyk Date: Tue, 26 Mar 2024 11:37:38 +0100 Subject: [PATCH 2/2] feat: Add Laravel 11 to test matrix and exclude PHP 8.1 on it --- .github/workflows/tests.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 5a00ee7..4f7d8ad 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,9 +11,12 @@ jobs: strategy: fail-fast: false matrix: - php: [ "8.1", "8.2" ] - laravel: [ "^9.0", "^10.0" ] + php: [ "8.1", "8.2", "8.3" ] + laravel: [ "^9.0", "^10.0", "^11.0" ] dependency-version: [ prefer-lowest, prefer-stable ] + exclude: + - php: "8.1" + laravel: "^11.0" name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}