From 3fba12e046ae35c7d65bb76de29aa8aa5d436c12 Mon Sep 17 00:00:00 2001 From: Shift Date: Thu, 5 Mar 2026 16:14:26 +0000 Subject: [PATCH 1/2] Bump dependencies for Laravel 13 --- composer.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index bfbf592..f902240 100644 --- a/composer.json +++ b/composer.json @@ -25,10 +25,10 @@ "require": { "php": "^8.2", "ext-json": "*", - "illuminate/auth": "^11.0|^12.0", - "illuminate/contracts": "^11.0|^12.0", - "illuminate/http": "^11.0|^12.0", - "illuminate/support": "^11.0|^12.0" + "illuminate/auth": "^11.0|^12.0|^13.0", + "illuminate/contracts": "^11.0|^12.0|^13.0", + "illuminate/http": "^11.0|^12.0|^13.0", + "illuminate/support": "^11.0|^12.0|^13.0" }, "require-dev": { "phpunit/phpunit": "^10.5" From bbfea251da4725f25c0041cb5270acf6d43cb5f2 Mon Sep 17 00:00:00 2001 From: Shift Date: Thu, 5 Mar 2026 16:14:26 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 13 --- .github/workflows/tests.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c1bb115..834b758 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -19,8 +19,11 @@ jobs: strategy: fail-fast: true matrix: - php: [ 8.2, 8.3, 8.4, 8.5 ] - laravel: [ 11, 12 ] + php: [8.2, 8.3, 8.4, 8.5] + laravel: [11, 12, 13] + exclude: + - laravel: '13' + php: 8.2 steps: - name: Checkout Code