From 9391edf5a0a3aedbc507c07e4deddd0d9bb6f8a1 Mon Sep 17 00:00:00 2001 From: Shift Date: Thu, 26 Feb 2026 21:52:15 +0000 Subject: [PATCH 1/2] Bump dependencies for Laravel 13 --- composer.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index 0f21194..4c655d9 100755 --- a/composer.json +++ b/composer.json @@ -18,14 +18,14 @@ ], "require": { "php": "^8.2", - "illuminate/contracts": "12.*|11.*|10.*" + "illuminate/contracts": "12.*|11.*|10.*|^13.0" }, "require-dev": { - "orchestra/testbench": "^8.0|^9.0|^10.0", + "orchestra/testbench": "^8.0|^9.0|^10.0|^11.0", "nunomaduro/collision": "^8.0|^7.8|^6.0", - "larastan/larastan": "^2.0|^3.0", - "pestphp/pest": "^2.34|^3.0", - "pestphp/pest-plugin-laravel": "^2.3|^3.0", + "larastan/larastan": "^2.0|^3.0|dev-l13", + "pestphp/pest": "^2.34|^3.0|^4.4", + "pestphp/pest-plugin-laravel": "^2.3|^3.0|^4.1", "phpstan/extension-installer": "^1.1", "phpstan/phpstan-deprecation-rules": "^1.0|^2.0", "phpstan/phpstan-phpunit": "^1.0|^2.0", From 606c1ed7efb86e738bb62d2a41aeb1187a47e881 Mon Sep 17 00:00:00 2001 From: Shift Date: Thu, 26 Feb 2026 21:52:15 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 13 --- .github/workflows/run-tests.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 088a6ca..9324b9b 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -15,7 +15,7 @@ jobs: matrix: os: [ubuntu-latest] php: [8.4, 8.3, 8.2] - laravel: ['12.*', '11.*', '10.*'] + laravel: ['10.*', '11.*', '12.*', '13.*'] stability: [prefer-lowest, prefer-stable] include: - laravel: 10.* @@ -24,6 +24,11 @@ jobs: testbench: 9.* - laravel: 12.* testbench: 10.* + - laravel: 13.* + testbench: 11.* + exclude: + - laravel: 13.* + php: 8.2 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}