From 1e2471a5dc9a23a600b63399d0d6e9c0c7f9e01e Mon Sep 17 00:00:00 2001 From: Shift Date: Fri, 27 Feb 2026 14:25:06 +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 0013e20..f2b3637 100644 --- a/composer.json +++ b/composer.json @@ -18,7 +18,7 @@ "require": { "php": "^8.1", "coderflexx/laravel-presenter": "^2.0", - "illuminate/contracts": "^9.0|^10.0|^11.0|^12.0", + "illuminate/contracts": "^9.0|^10.0|^11.0|^12.0|^13.0", "jaybizzle/crawler-detect": "^1.2", "spatie/laravel-package-tools": "^1.9.2" }, @@ -26,12 +26,12 @@ "laravel/pint": "^1.0", "nunomaduro/collision": "^7.0|^8.0", "nunomaduro/larastan": "^2.0.1|^3.0", - "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0", + "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0|^11.0", "phpstan/extension-installer": "^1.1", "phpstan/phpstan-deprecation-rules": "^1.0|^2.0", "phpstan/phpstan-phpunit": "^1.0|^2.0", - "phpunit/phpunit": "^9.5|^10.0|^11.0", - "pestphp/pest": "^1.21|^2.0|^3.7" + "phpunit/phpunit": "^9.5|^10.0|^11.0|^12.5.12", + "pestphp/pest": "^1.21|^2.0|^3.7|^4.4" }, "autoload": { "psr-4": { From 67ad8f729ee12306dc80d4270f9d8a294b844da6 Mon Sep 17 00:00:00 2001 From: Shift Date: Fri, 27 Feb 2026 14:25:06 +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 86714dc..04abe16 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -17,7 +17,7 @@ jobs: matrix: os: [ubuntu-latest, windows-latest] php: [8.1, 8.2, 8.3] - laravel: ['10.*', '11.*', '12.*'] + laravel: ['10.*', '11.*', '12.*', '13.*'] stability: [prefer-lowest, prefer-stable] include: - laravel: 10.* @@ -26,11 +26,17 @@ jobs: testbench: ^9.0 - laravel: 12.* testbench: ^10.0 + - laravel: 13.* + testbench: 11.* exclude: - laravel: 11.* php: 8.1 - laravel: 12.* php: 8.1 + - laravel: 13.* + php: 8.1 + - laravel: 13.* + php: 8.2 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}