From 1208bfe6c837a8c7604b6db9d8761eba4605fc25 Mon Sep 17 00:00:00 2001 From: Shift Date: Thu, 5 Mar 2026 17:25:05 +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 c3023ca..802bb8c 100644 --- a/composer.json +++ b/composer.json @@ -18,7 +18,7 @@ "require": { "php": "^8.2", "composer/class-map-generator": "^1.1", - "illuminate/contracts": "^11.0 || ^12.0", + "illuminate/contracts": "^11.0 || ^12.0 || ^13.0", "spatie/laravel-package-tools": "^1.92", "spiral/roadrunner": "^2025.1.3", "spiral/roadrunner-cli": "^2.6", @@ -33,9 +33,9 @@ "mockery/mockery": "^1.6", "nesbot/carbon": "^2.63 || ^3.0", "nunomaduro/collision": "^8.0", - "orchestra/testbench": "^9.1 || ^10.0", - "pestphp/pest": "^3.0", - "pestphp/pest-plugin-laravel": "^3.0", + "orchestra/testbench": "^9.1 || ^10.0 || ^11.0", + "pestphp/pest": "^3.0 || ^4.4", + "pestphp/pest-plugin-laravel": "^3.0 || ^4.1", "phpstan/extension-installer": "^1.4", "phpstan/phpstan-deprecation-rules": "^2.0", "phpstan/phpstan": "^2.1", From 9df8b7e690fbe8f491cbacec249f7541b15c2796 Mon Sep 17 00:00:00 2001 From: Shift Date: Thu, 5 Mar 2026 17:25:05 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 13 --- .github/workflows/run-tests.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index ff7a500..5830570 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -9,12 +9,17 @@ on: jobs: test: runs-on: ubuntu-latest + timeout-minutes: 10 + strategy: fail-fast: false matrix: - php: [ 8.2 , 8.3, 8.4 ] - laravel: [ ^11.0, ^12.0 ] + php: [8.2, 8.3, 8.4] + laravel: [^11.0, ^12.0, ^13.0] + exclude: + - laravel: ^13.0 + php: 8.2 name: P${{ matrix.php }} - L${{ matrix.laravel }}