From 52209f538ff0d65a1aadb783f5ad760dcfb248dc Mon Sep 17 00:00:00 2001 From: Shift Date: Thu, 26 Feb 2026 22:21:52 +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 1889a3f..6be8e96 100644 --- a/composer.json +++ b/composer.json @@ -26,12 +26,12 @@ "php": "^8.2", "ext-json": "*", "cloudcreativity/json-api-testing": "^6.1", - "illuminate/http": "^11.0|^12.0", - "illuminate/support": "^11.0|^12.0", - "illuminate/testing": "^11.0|^12.0" + "illuminate/http": "^11.0|^12.0|^13.0", + "illuminate/support": "^11.0|^12.0|^13.0", + "illuminate/testing": "^11.0|^12.0|^13.0" }, "require-dev": { - "laravel/framework": "^11.0|^12.0", + "laravel/framework": "^11.0|^12.0|^13.0", "phpunit/phpunit": "^10.5|^11.0" }, "autoload": { From 006f2ca06e8f886735c1bff2128cb9dc12410f41 Mon Sep 17 00:00:00 2001 From: Shift Date: Thu, 26 Feb 2026 22:21:52 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 13 --- .github/workflows/tests.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9fba1ea..a2c69b8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,15 +12,17 @@ on: jobs: build: - runs-on: ubuntu-latest strategy: fail-fast: true matrix: php: [8.2, 8.3, 8.4] - laravel: [11, 12] + laravel: [11, 12, 13] phpunit: ['10.5', '11.0'] + exclude: + - laravel: '13' + php: 8.2 steps: - name: Checkout Code