From a93ff1edb2c4b4d551824ee98a0d3a076b2d942f Mon Sep 17 00:00:00 2001 From: Massimo Triassi Date: Tue, 10 Jun 2025 16:10:30 -0400 Subject: [PATCH 1/2] chore: #9 add illuminate 12.x and php 8.3 support --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 6acb758..9a0a5f7 100644 --- a/composer.json +++ b/composer.json @@ -23,9 +23,9 @@ } ], "require": { - "php": "^8.1|^8.2", + "php": "^8.1|^8.2|^8.3", "spatie/laravel-package-tools": "^1.14.0", - "illuminate/contracts": "^10.0|^11.0" + "illuminate/contracts": "^10.0|^11.0|^12.0" }, "require-dev": { "doctrine/dbal": "^3.7", From 7f8ca3921ac383d87927afbc87271be0b85e26c8 Mon Sep 17 00:00:00 2001 From: Massimo Triassi Date: Tue, 10 Jun 2025 16:13:05 -0400 Subject: [PATCH 2/2] ci: #9 add test runners for php 8.1 and 8.3 to reflect package support --- .github/workflows/run-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index d65ff86..9776eb0 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -9,7 +9,7 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest, windows-latest] - php: [8.2] + php: [8.1, 8.2, 8.3] stability: [prefer-lowest, prefer-stable] name: P${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }}