From 54834b4c41881df7302c491ba5c20c6b8b58ab1c Mon Sep 17 00:00:00 2001 From: Shift Date: Thu, 5 Mar 2026 10:56:22 +0000 Subject: [PATCH 1/2] Bump dependencies for Laravel 13 --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index 09e3dd1..f127cce 100644 --- a/composer.json +++ b/composer.json @@ -19,11 +19,11 @@ ], "require": { "php": "^8.1|^8.2|^8.3|^8.4", - "laravel/framework": "^9.16|^10.0|^11.0|^12.0" + "laravel/framework": "^9.16|^10.0|^11.0|^12.0|^13.0" }, "require-dev": { - "orchestra/testbench": "^10.0", - "pestphp/pest": "^3.0", + "orchestra/testbench": "^10.0|^11.0", + "pestphp/pest": "^3.0|^4.4", "larastan/larastan": "^3.0", "laravel/pint": "^1.6" }, From 447654727b3481e2e9fab4ad72224a6670b788e3 Mon Sep 17 00:00:00 2001 From: Shift Date: Thu, 5 Mar 2026 10:56:22 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 13 --- .github/workflows/tests.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 47dcff0..aef2070 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -19,7 +19,10 @@ jobs: fail-fast: false matrix: php: [8.2, 8.3, 8.4] - laravel: [12.*] + laravel: ['12.*', '13.*'] + exclude: + - laravel: 13.* + php: 8.2 name: PHP:${{ matrix.php }} / Laravel:${{ matrix.laravel }}