From e063e20307f4057ad91bfc77f4da9c38e7c09930 Mon Sep 17 00:00:00 2001 From: Shift Date: Thu, 5 Mar 2026 13:44:56 +0000 Subject: [PATCH 1/2] Bump dependencies for Laravel 13 --- composer.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/composer.json b/composer.json index be4f75d..cba765a 100644 --- a/composer.json +++ b/composer.json @@ -15,16 +15,16 @@ "require": { "php": "^8.1|^8.2|^8.3|^8.4", "ext-json": "*", - "illuminate/console": "^9.0|^10.0|^11.0|^12.0", - "illuminate/contracts": "^9.0|^10.0|^11.0|^12.0", - "illuminate/filesystem": "^9.0|^10.0|^11.0|^12.0", - "illuminate/support": "^9.0|^10.0|^11.0|^12.0", + "illuminate/console": "^9.0|^10.0|^11.0|^12.0|^13.0", + "illuminate/contracts": "^9.0|^10.0|^11.0|^12.0|^13.0", + "illuminate/filesystem": "^9.0|^10.0|^11.0|^12.0|^13.0", + "illuminate/support": "^9.0|^10.0|^11.0|^12.0|^13.0", "roave/better-reflection": "^6.25" }, "require-dev": { - "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0|^10.0", + "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", "friendsofphp/php-cs-fixer": "^3.13", - "phpunit/phpunit": "^9.0|^10.5|^11.5.3", + "phpunit/phpunit": "^9.0|^10.5|^11.5.3|^12.5.12", "larastan/larastan": "^2.9|^3" }, "autoload": { From 40663b6ded17753b62aa049ada8f56ef31b1a364 Mon Sep 17 00:00:00 2001 From: Shift Date: Thu, 5 Mar 2026 13:44:56 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 13 --- .github/workflows/run-tests.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 047c5e1..225e632 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -16,7 +16,7 @@ jobs: fail-fast: true matrix: php: [8.4, 8.3, 8.2, 8.1] - laravel: ['9.*', '10.*', '11.*', '12.*'] + laravel: ['9.*', '10.*', '11.*', '12.*', '13.*'] stability: [prefer-stable] include: - laravel: 11.* @@ -28,11 +28,17 @@ jobs: - php: 8.1 - laravel: 12.* testbench: 10.* + - laravel: 13.* + testbench: 11.* exclude: - laravel: 11.* php: 8.1 - laravel: 12.* php: 8.1 + - laravel: 13.* + php: 8.2 + - laravel: 13.* + php: 8.1 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ubuntu-latest