From 3c2c81865b30e365ef930f47f37339ccfad25caf Mon Sep 17 00:00:00 2001 From: Lee Evans Date: Sat, 11 Jul 2026 20:27:01 +0100 Subject: [PATCH] chore: allow laravel 13 (testbench ^11) and cover it in CI Constraint widening only: append ^11.0 to orchestra/testbench and add the Laravel 13 matrix entry. No code changes. Co-Authored-By: Claude Fable 5 --- .github/workflows/run-tests.yml | 4 +++- composer.json | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index f773fb2..8a39d68 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -13,13 +13,15 @@ jobs: fail-fast: true matrix: php: [8.3, 8.4] - laravel: [11.*, 12.*] + laravel: [11.*, 12.*, 13.*] stability: [prefer-stable] include: - laravel: 11.* testbench: 9.* - laravel: 12.* testbench: 10.* + - laravel: 13.* + testbench: 11.* name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} diff --git a/composer.json b/composer.json index 82aa59f..678527d 100644 --- a/composer.json +++ b/composer.json @@ -32,7 +32,7 @@ "phpunit/phpunit": "^12.0", "barryvdh/laravel-ide-helper": "^3.1", "laravel/pint": "^1.0", - "orchestra/testbench": "^8.0|^9.0|^10.0", + "orchestra/testbench": "^8.0|^9.0|^10.0|^11.0", "pestphp/pest": "^4.0", "pestphp/pest-plugin-laravel": "^4.0", "pestphp/pest-plugin-livewire": "^4.0",