From 64d19e6d27ad06ea07dc9ca77e0b763ad37b7799 Mon Sep 17 00:00:00 2001 From: Shift Date: Thu, 5 Mar 2026 19:40:06 +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 737abe8..1d59a83 100644 --- a/composer.json +++ b/composer.json @@ -17,7 +17,7 @@ ], "require": { "php": "^8.3", - "illuminate/support": "^11.0|^12.0", + "illuminate/support": "^11.0|^12.0|^13.0", "nesbot/carbon": "^3.0", "phpstan/phpstan": "^2.0" }, @@ -25,7 +25,7 @@ "friendsofphp/php-cs-fixer": "^3.7", "larastan/larastan": "^3.0", "nunomaduro/collision": "^8.0", - "orchestra/testbench": "^9.0|^10.0", + "orchestra/testbench": "^9.0|^10.0|^11.0", "pestphp/pest": "^3.0|^4.0", "pestphp/pest-plugin-laravel": "^3.0|^4.0", "phpstan/extension-installer": "^1.1", From 62bfecb1cf2844914a56c8cb7f7d6bbae10eef90 Mon Sep 17 00:00:00 2001 From: Shift Date: Thu, 5 Mar 2026 19:40:06 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 13 --- .github/workflows/run-tests.yml | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index f68ccb0..58a3448 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -2,25 +2,30 @@ name: run-tests on: push: - branches: [ main ] + branches: + - main pull_request: - branches: [ main ] + branches: + - main jobs: test: runs-on: ${{ matrix.os }} + strategy: fail-fast: true matrix: - os: [ ubuntu-latest ] - php: [ 8.3, 8.4, 8.5 ] - laravel: [ ^11.0, ^12.0 ] - stability: [ prefer-lowest, prefer-stable ] + os: [ubuntu-latest] + php: [8.3, 8.4, 8.5] + laravel: [^11.0, ^12.0, ^13.0] + stability: [prefer-lowest, prefer-stable] include: - laravel: ^11.0 testbench: ^9.0 - laravel: ^12.0 testbench: ^10.0 + - laravel: ^13.0 + testbench: ^11.0 exclude: - php: 8.4 laravel: ^11.0 @@ -29,7 +34,6 @@ jobs: laravel: ^11.0 stability: prefer-lowest - name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} steps: