From eb3c794b8e9a457ac6c77435213f9245e49b1467 Mon Sep 17 00:00:00 2001 From: kyledoesdev Date: Fri, 24 Apr 2026 18:54:47 -0400 Subject: [PATCH] Add support for Laravel 13 Updates composer.json to include illuminate ^13.0 and orchestra/testbench ^11.0. The GitHub Actions workflow is also updated to include Laravel 13 in the test matrix. --- .github/workflows/run-tests.yml | 4 +++- composer.json | 8 ++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index a5761c8..d1128ed 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -22,11 +22,13 @@ jobs: matrix: os: [ubuntu-latest] php: [8.4] - laravel: [12.*] + laravel: [12.*, 13.*] stability: [prefer-stable] include: - laravel: 12.* testbench: 10.* + - laravel: 13.* + testbench: 11.* name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} diff --git a/composer.json b/composer.json index 5a9db89..0fe405d 100644 --- a/composer.json +++ b/composer.json @@ -17,16 +17,16 @@ ], "require": { "php": "^8.4", - "illuminate/contracts": "^12.0", - "illuminate/http": "^12.0", - "illuminate/support": "^12.0", + "illuminate/contracts": "^12.0|^13.0", + "illuminate/http": "^12.0|^13.0", + "illuminate/support": "^12.0|^13.0", "spatie/laravel-package-tools": "^1.16", "spatie/laravel-stats": "^2.3" }, "require-dev": { "laravel/pint": "^1.14", "nunomaduro/collision": "^8.8", - "orchestra/testbench": "^10.0.0", + "orchestra/testbench": "^10.0.0|^11.0.0", "pestphp/pest": "^4.0", "pestphp/pest-plugin-arch": "^4.0", "pestphp/pest-plugin-laravel": "^4.0"