From 11745963808ec7f0e1bc8cb9da763d6e1eaf6cb8 Mon Sep 17 00:00:00 2001 From: Duncan McClean Date: Thu, 19 Feb 2026 16:17:41 +0000 Subject: [PATCH 1/2] update dependencies --- composer.json | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index 98d2392..3e919c4 100644 --- a/composer.json +++ b/composer.json @@ -24,11 +24,11 @@ } }, "require": { - "statamic/cms": "^6.0.0" + "statamic/cms": "^6.0" }, "require-dev": { - "orchestra/testbench": "^10.0", - "phpunit/phpunit": "^11.0" + "orchestra/testbench": "^10.0 || ^11.0", + "phpunit/phpunit": "^11.0 || ^12.0" }, "config": { "allow-plugins": { @@ -37,5 +37,7 @@ }, "suggest": { "spatie/fork": "Required to generate pages concurrently (^0.0.4)." - } + }, + "minimum-stability": "dev", + "prefer-stable": true } From 7a08248e870298fb9cca676d58eea76e513aa582 Mon Sep 17 00:00:00 2001 From: Duncan McClean Date: Thu, 19 Feb 2026 16:17:47 +0000 Subject: [PATCH 2/2] update testing matrix --- .github/workflows/tests.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 43f2739..608d872 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -12,14 +12,14 @@ jobs: strategy: matrix: - php: [8.3, 8.4] - laravel: [12.*] + php: [8.3, 8.4, 8.5] + laravel: [12.*, 13.*] stability: [prefer-lowest, prefer-stable] os: [ubuntu-latest] include: - os: windows-latest - php: 8.4 - laravel: 12.* + php: 8.5 + laravel: 13.* stability: prefer-stable name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}