From 9f90b9a7ddfb7d37460a2b43c86f15e10d705899 Mon Sep 17 00:00:00 2001 From: Dominik Kohler <18621527+kohlerdominik@users.noreply.github.com> Date: Tue, 22 Apr 2025 20:30:02 +0200 Subject: [PATCH 1/2] remove potentially unneeded requirement --- composer.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/composer.json b/composer.json index c4d4c64..c9c80fc 100644 --- a/composer.json +++ b/composer.json @@ -19,8 +19,7 @@ "php": "^8.0", "illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", "illuminate/database": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", - "illuminate/events": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", - "laravel/serializable-closure": "^2.0" + "illuminate/events": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0" }, "autoload": { "psr-4": { From d12fe9c49d17a609f714c5fc07c600566c705324 Mon Sep 17 00:00:00 2001 From: Dominik Kohler <18621527+kohlerdominik@users.noreply.github.com> Date: Tue, 22 Apr 2025 20:31:55 +0200 Subject: [PATCH 2/2] add test runner for php8.0 --- .github/workflows/run-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 4fda26e..fbcb397 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -22,9 +22,9 @@ jobs: strategy: fail-fast: false matrix: - php: [8.1, 8.2, 8.3, 8.4] + php: [8.0, 8.1, 8.2, 8.3, 8.4] - name: P${{ matrix.php }} + name: PHP${{ matrix.php }} steps: - name: Checkout code