From 678b9ee9cae2fb95acf17c507e164172066ad68a Mon Sep 17 00:00:00 2001 From: Jordy Van der Haegen Date: Tue, 17 Mar 2026 21:08:54 +0100 Subject: [PATCH 1/2] Support Laravel 13 --- .github/workflows/main.yml | 7 ++++++- composer.json | 6 +++--- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 03a5a80..f2ce8d4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,11 +14,16 @@ jobs: matrix: os: [ubuntu-latest] php: [8.5, 8.4, 8.3, 8.2] - laravel: [12.*] + laravel: [13.*, 12.*] stability: [prefer-lowest, prefer-stable] include: + - laravel: 13.* + testbench: 11.* - laravel: 12.* testbench: 10.* + exclude: + - laravel: 13.* + php: 8.2 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} diff --git a/composer.json b/composer.json index 9bab35e..c1d5d72 100644 --- a/composer.json +++ b/composer.json @@ -19,12 +19,12 @@ ], "require": { "php": "^8.2", - "illuminate/support": "^12.0", - "illuminate/database": "^12.0" + "illuminate/support": "^12.0|^13.0", + "illuminate/database": "^12.0|^13.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.5", - "orchestra/testbench": "^10.0", + "orchestra/testbench": "^10.0|^11.0", "phpunit/phpunit": "^11.0" }, "autoload": { From f3ec3289ecb6d85858e239eaed470c185cc7bdee Mon Sep 17 00:00:00 2001 From: Jordy Van der Haegen Date: Tue, 17 Mar 2026 21:57:47 +0100 Subject: [PATCH 2/2] Drop Laravel 10 support --- .github/workflows/main.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f2ce8d4..2592837 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,16 +14,16 @@ jobs: matrix: os: [ubuntu-latest] php: [8.5, 8.4, 8.3, 8.2] - laravel: [13.*, 12.*] + laravel: [13.*, 12.*] stability: [prefer-lowest, prefer-stable] include: - - laravel: 13.* - testbench: 11.* + - laravel: 13.* + testbench: 11.* - laravel: 12.* testbench: 10.* - exclude: - - laravel: 13.* - php: 8.2 + exclude: + - laravel: 13.* + php: 8.2 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}