From d7e1b06e52f5b4519e4fcb97b75486d26e82e1ae Mon Sep 17 00:00:00 2001 From: Shift Date: Thu, 5 Mar 2026 14:01:39 +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 c259eb94..b11b00b6 100644 --- a/composer.json +++ b/composer.json @@ -32,7 +32,7 @@ ], "require": { "php": "^8.3", - "illuminate/contracts": "^10.0|^11.0|^12.0", + "illuminate/contracts": "^10.0|^11.0|^12.0|^13.0", "laravel/prompts": "^0.1.1|^0.2|^0.3", "nativephp/laravel": "^1.0", "nativephp/php-bin": "^1.0", @@ -44,10 +44,10 @@ "laravel/pint": "^1.0", "nunomaduro/collision": "^7.9|^8.1.1", "larastan/larastan": "^2.0.1|^3.0", - "orchestra/testbench": "^8.18|^9.0|^10.0", - "pestphp/pest": "^2.7|^3.7", - "pestphp/pest-plugin-arch": "^2.0|^3.0", - "pestphp/pest-plugin-laravel": "^2.0|^3.1", + "orchestra/testbench": "^8.18|^9.0|^10.0|^11.0", + "pestphp/pest": "^2.7|^3.7|^4.4", + "pestphp/pest-plugin-arch": "^2.0|^3.0|^4.0", + "pestphp/pest-plugin-laravel": "^2.0|^3.1|^4.1", "phpstan/extension-installer": "^1.1", "phpstan/phpstan-deprecation-rules": "^1.0|^2.0", "phpstan/phpstan-phpunit": "^1.0|^2.0", From 183fef529a32e7f38f077aa28ad852323ca89358 Mon Sep 17 00:00:00 2001 From: Shift Date: Thu, 5 Mar 2026 14:01:39 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 13 --- .github/workflows/run-tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 0ed4cc82..620dd150 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -16,10 +16,10 @@ jobs: strategy: fail-fast: false matrix: - os: [ ubuntu-latest, windows-latest, macos-latest ] - php: [ 8.4, 8.3 ] - laravel: [ '11.*', '12.*' ] - stability: [ prefer-lowest, prefer-stable ] + os: [ubuntu-latest, windows-latest, macos-latest] + php: [8.4, 8.3] + laravel: ['11.*', '12.*', '13.*'] + stability: [prefer-lowest, prefer-stable] name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}