From 68786a234ef3679a5e4c8da670313e9bd7a8b011 Mon Sep 17 00:00:00 2001 From: Shift Date: Wed, 25 Feb 2026 17:18:15 +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 5546cbc..e9130dc 100644 --- a/composer.json +++ b/composer.json @@ -23,14 +23,14 @@ ], "require": { "php": "^8.2", - "illuminate/contracts": "^8.83.27|^9.51.0|^10.0.0|^11.0|^12.0", + "illuminate/contracts": "^8.83.27|^9.51.0|^10.0.0|^11.0|^12.0|^13.0", "spatie/laravel-package-tools": "^1.19" }, "require-dev": { - "orchestra/testbench": "^6.25.1|^7.22.0|^8.0.0|^9.0", + "orchestra/testbench": "^6.25.1|^7.22.0|^8.0.0|^9.0|^11.0", "mockery/mockery": "^0.9.4 || ~1.0", - "pestphp/pest": "^1.23.1|^2.11", - "pestphp/pest-plugin-laravel": "^1.4|^2.1", + "pestphp/pest": "^1.23.1|^2.11|^4.4", + "pestphp/pest-plugin-laravel": "^1.4|^2.1|^4.1", "laravel/pint": "^1.5" }, "autoload": { From 073225d5db8e6fc7b36bd11f6efe49bf4df50128 Mon Sep 17 00:00:00 2001 From: Shift Date: Wed, 25 Feb 2026 17:18:15 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 13 --- .github/workflows/run-tests.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 06219a8..cca5229 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -1,22 +1,30 @@ name: Tests -on: [push, pull_request] +on: + - push + - pull_request jobs: test: runs-on: ${{ matrix.os }} + strategy: fail-fast: true matrix: os: [ubuntu-latest] php: [8.3, 8.2] - laravel: [10.*, 11.*] + laravel: ['10.*', '11.*', '13.*'] stability: [prefer-stable] include: - laravel: 11.* testbench: 9.* - laravel: 10.* testbench: 8.* + - laravel: 13.* + testbench: 11.* + exclude: + - laravel: 13.* + php: 8.2 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}