From 5397e7602eb032696887393553046585255a7878 Mon Sep 17 00:00:00 2001 From: Jordy Van der Haegen Date: Tue, 17 Mar 2026 21:09:48 +0100 Subject: [PATCH 1/2] Support Laravel 13 --- .github/workflows/main.yml | 8 +++++++- composer.json | 10 +++++----- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7b44b22..9308d8c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,9 +14,11 @@ jobs: matrix: os: [ubuntu-latest] php: [8.5, 8.4, 8.3, 8.2, 8.1] - laravel: [12.*, 11.*, 10.*] + laravel: [13.*, 12.*, 11.*, 10.*] stability: [prefer-lowest, prefer-stable] include: + - laravel: 13.* + testbench: 11.* - laravel: 12.* testbench: 10.* - laravel: 11.* @@ -24,6 +26,10 @@ jobs: - laravel: 10.* testbench: ^8.31 exclude: + - laravel: 13.* + php: 8.2 + - laravel: 13.* + php: 8.1 - laravel: 12.* php: 8.1 - laravel: 11.* diff --git a/composer.json b/composer.json index 7da3709..dedba4f 100644 --- a/composer.json +++ b/composer.json @@ -17,14 +17,14 @@ ], "require": { "php": "^8.1", - "illuminate/console": "^10.0|^11.0|^12.0", - "illuminate/filesystem": "^10.0|^11.0|^12.0", - "illuminate/process": "^10.0|^11.0|^12.0", - "illuminate/support": "^10.0|^11.0|^12.0" + "illuminate/console": "^10.0|^11.0|^12.0|^13.0", + "illuminate/filesystem": "^10.0|^11.0|^12.0|^13.0", + "illuminate/process": "^10.0|^11.0|^12.0|^13.0", + "illuminate/support": "^10.0|^11.0|^12.0|^13.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.5", - "orchestra/testbench": "^8.0|^9.0|^10.0", + "orchestra/testbench": "^8.0|^9.0|^10.0|^11.0", "phpunit/phpunit": "^10.1|^11.0" }, "autoload": { From 93bb9f5058cb18291a5c301a53cefeec5272e3e7 Mon Sep 17 00:00:00 2001 From: Jordy Van der Haegen Date: Tue, 17 Mar 2026 21:34:16 +0100 Subject: [PATCH 2/2] Drop Laravel 10 support --- .github/workflows/main.yml | 4 +--- composer.json | 10 +++++----- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9308d8c..205af1d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -14,7 +14,7 @@ jobs: matrix: os: [ubuntu-latest] php: [8.5, 8.4, 8.3, 8.2, 8.1] - laravel: [13.*, 12.*, 11.*, 10.*] + laravel: [13.*, 12.*, 11.*] stability: [prefer-lowest, prefer-stable] include: - laravel: 13.* @@ -23,8 +23,6 @@ jobs: testbench: 10.* - laravel: 11.* testbench: ^9.9 - - laravel: 10.* - testbench: ^8.31 exclude: - laravel: 13.* php: 8.2 diff --git a/composer.json b/composer.json index dedba4f..0907bed 100644 --- a/composer.json +++ b/composer.json @@ -17,14 +17,14 @@ ], "require": { "php": "^8.1", - "illuminate/console": "^10.0|^11.0|^12.0|^13.0", - "illuminate/filesystem": "^10.0|^11.0|^12.0|^13.0", - "illuminate/process": "^10.0|^11.0|^12.0|^13.0", - "illuminate/support": "^10.0|^11.0|^12.0|^13.0" + "illuminate/console": "^11.0|^12.0|^13.0", + "illuminate/filesystem": "^11.0|^12.0|^13.0", + "illuminate/process": "^11.0|^12.0|^13.0", + "illuminate/support": "^11.0|^12.0|^13.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.5", - "orchestra/testbench": "^8.0|^9.0|^10.0|^11.0", + "orchestra/testbench": "^9.0|^10.0|^11.0", "phpunit/phpunit": "^10.1|^11.0" }, "autoload": {