From 9ff447868ca212698dee89739adef5843a404e4e Mon Sep 17 00:00:00 2001 From: Lee Evans Date: Sat, 11 Jul 2026 20:24:56 +0100 Subject: [PATCH] chore: allow laravel 13 (testbench ^11) and cover it in CI Constraint widening only: appends Laravel 13 / Testbench 11 alternatives to existing version ranges, no minimums raised. Co-Authored-By: Claude Fable 5 --- .github/workflows/run-tests.yml | 5 ++++- composer.json | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 4dca5b7..9b184d5 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -10,7 +10,7 @@ jobs: matrix: os: [ubuntu-latest] php: [8.3,8.4] - laravel: [11.*,12.*] + laravel: [11.*,12.*,13.*] stability: [ prefer-stable ] filament: [5.*] dependency-version: [ prefer-stable] @@ -21,6 +21,9 @@ jobs: - laravel: 12.* testbench: 10.* filament: 5.* + - laravel: 13.* + testbench: 11.* + filament: 5.* name: P${{ matrix.php }} - L${{ matrix.laravel }} - F${{ matrix.filament }} - ${{ matrix.stability }} diff --git a/composer.json b/composer.json index bcc36d2..1ae0974 100644 --- a/composer.json +++ b/composer.json @@ -24,7 +24,7 @@ }, "require-dev": { "blade-ui-kit/blade-heroicons": "^2.1", - "orchestra/testbench": "^9.0 || ^10.0", + "orchestra/testbench": "^9.0 || ^10.0 || ^11.0", "pestphp/pest": "^3.0 || ^4.0", "pestphp/pest-plugin-laravel": "^3.0 || ^4.0", "pestphp/pest-plugin-livewire": "^4.0",