From 7de5eb9e4bffd92e2039a22d3c4bffd7d990a241 Mon Sep 17 00:00:00 2001 From: Shift Date: Wed, 25 Feb 2026 16:54:45 +0000 Subject: [PATCH 1/2] Bump dependencies for Laravel 13 --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index f70475c..ce2995d 100644 --- a/composer.json +++ b/composer.json @@ -23,8 +23,8 @@ "require": { "php": "^8.2", "ext-json": "*", - "illuminate/contracts": "^10.0|^11.0|^12.0", - "illuminate/support": "^10.0|^11.0|^12.0", + "illuminate/contracts": "^10.0|^11.0|^12.0|^13.0", + "illuminate/support": "^10.0|^11.0|^12.0|^13.0", "phpunit/phpunit": "^10.5|^11.0|^12.0" }, "autoload": { From ad713fd7a47a4ead210b569a105df1d0b2574c08 Mon Sep 17 00:00:00 2001 From: Shift Date: Wed, 25 Feb 2026 16:54:45 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 13 --- .github/workflows/tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index cc4743a..1e77c23 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,7 +18,7 @@ jobs: fail-fast: true matrix: php: [8.2, 8.3, 8.4] - laravel: [10, 11, 12] + laravel: [10, 11, 12, 13] phpunit: [10.5, 11, 12] exclude: - php: 8.2 @@ -30,6 +30,8 @@ jobs: - php: 8.2 laravel: 10 phpunit: 12 + - laravel: '13' + php: 8.2 steps: - name: Checkout Code