From c18686cefe1a6376dfe942c07c552a00a6005823 Mon Sep 17 00:00:00 2001 From: Jordy Van der Haegen Date: Tue, 17 Mar 2026 21:10:03 +0100 Subject: [PATCH 1/2] Support Laravel 13 --- .github/workflows/main.yml | 8 +++++++- composer.json | 6 +++--- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4bdcdba..8f0bfa3 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.02 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 3e52916..2401f53 100644 --- a/composer.json +++ b/composer.json @@ -18,12 +18,12 @@ "require": { "php": "^8.1", "esign/laravel-underscore-translatable": "^1.4", - "illuminate/http": "^10.0|^11.0|^12.0", - "illuminate/support": "^10.0|^11.0|^12.0" + "illuminate/http": "^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.02|^9.0|^10.0", + "orchestra/testbench": "^8.02|^9.0|^10.0|^11.0", "phpunit/phpunit": "^10.1|^11.0" }, "autoload": { From e7418fa0f2b8d026c0da33dfc471982fdc29d77b Mon Sep 17 00:00:00 2001 From: Jordy Van der Haegen Date: Tue, 17 Mar 2026 21:34:21 +0100 Subject: [PATCH 2/2] Drop Laravel 10 support --- .github/workflows/main.yml | 4 +--- composer.json | 6 +++--- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8f0bfa3..d3d86a3 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.02 exclude: - laravel: 13.* php: 8.2 diff --git a/composer.json b/composer.json index 2401f53..0fa4853 100644 --- a/composer.json +++ b/composer.json @@ -18,12 +18,12 @@ "require": { "php": "^8.1", "esign/laravel-underscore-translatable": "^1.4", - "illuminate/http": "^10.0|^11.0|^12.0|^13.0", - "illuminate/support": "^10.0|^11.0|^12.0|^13.0" + "illuminate/http": "^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.02|^9.0|^10.0|^11.0", + "orchestra/testbench": "^9.0|^10.0|^11.0", "phpunit/phpunit": "^10.1|^11.0" }, "autoload": {