From 18a3d76f9118537ea7fb0a796b6607ba729bdb26 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 18 Mar 2026 17:04:38 +0000 Subject: [PATCH 1/3] Initial plan From 2d2a77ddf27c1e34378b9dc20be7083e3ef49818 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 18 Mar 2026 17:08:21 +0000 Subject: [PATCH 2/3] Add Laravel 13 compatibility Co-authored-by: stevebauman <6421846+stevebauman@users.noreply.github.com> --- .github/workflows/run-tests.yml | 10 +++++----- composer.json | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 0f9bebf..1028620 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -13,17 +13,17 @@ jobs: php: [8.4, 8.3, 8.2] include: - php: 8.4 + laravel: 13.* + testbench: 11.* + + - php: 8.3 laravel: 12.* testbench: 10.* - - php: 8.3 + - php: 8.2 laravel: 11.* testbench: 9.* - - php: 8.2 - laravel: 10.* - testbench: 8.* - name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.os }} steps: diff --git a/composer.json b/composer.json index 7753dff..ab258f1 100644 --- a/composer.json +++ b/composer.json @@ -18,12 +18,12 @@ "require": { "php": "^8.1", "directorytree/imapengine": "^1.19.0", - "illuminate/contracts": "^10.0|^11.0|^12.0" + "illuminate/contracts": "^10.0|^11.0|^12.0|^13.0" }, "require-dev": { "laravel/pint": "^1.14", "nunomaduro/collision": "^7.10|^8.1", - "orchestra/testbench": "^8.22|^9.0|^10.0", + "orchestra/testbench": "^8.22|^9.0|^10.0|^11.0", "pestphp/pest": "^2.0|^3.0", "pestphp/pest-plugin-arch": "^2.0|^3.0", "pestphp/pest-plugin-laravel": "^2.0|^3.0", From 6c187f44317fd102f0b860e6363c90d38f672ab8 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Wed, 18 Mar 2026 17:27:43 +0000 Subject: [PATCH 3/3] Add Pest v4 support Co-authored-by: stevebauman <6421846+stevebauman@users.noreply.github.com> --- composer.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/composer.json b/composer.json index ab258f1..31dead5 100644 --- a/composer.json +++ b/composer.json @@ -24,9 +24,9 @@ "laravel/pint": "^1.14", "nunomaduro/collision": "^7.10|^8.1", "orchestra/testbench": "^8.22|^9.0|^10.0|^11.0", - "pestphp/pest": "^2.0|^3.0", - "pestphp/pest-plugin-arch": "^2.0|^3.0", - "pestphp/pest-plugin-laravel": "^2.0|^3.0", + "pestphp/pest": "^2.0|^3.0|^4.0", + "pestphp/pest-plugin-arch": "^2.0|^3.0|^4.0", + "pestphp/pest-plugin-laravel": "^2.0|^3.0|^4.0", "spatie/laravel-ray": "^1.35" }, "autoload": {