From 43a03fbd838f20a8339506a8ef7b91e4b0604bf4 Mon Sep 17 00:00:00 2001 From: Alexandre D'Eschambeault Date: Tue, 26 Mar 2024 08:59:10 -0400 Subject: [PATCH 1/4] build(deps): drop php 8.0 support --- .github/workflows/tests.yml | 5 +---- composer.json | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d34738d..389fae6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,12 +10,9 @@ jobs: strategy: fail-fast: true matrix: - php: [8.0, 8.1, 8.2] + php: [8.1, 8.2] laravel: [9.*, 10.*] dependency-version: [prefer-lowest, prefer-stable] - exclude: - - php: 8.0 - laravel: 10.* include: - laravel: 9.* testbench: 7.* diff --git a/composer.json b/composer.json index 5a0fa17..80e3b38 100644 --- a/composer.json +++ b/composer.json @@ -16,7 +16,7 @@ } ], "require": { - "php": "^8.0", + "php": "^8.1", "exolnet/laravel-html-list": "^2.0.0", "illuminate/support": "^9.0|^10.0" }, From d4c58450423398a3ea274ddca1425cb2d8aa8daf Mon Sep 17 00:00:00 2001 From: Alexandre D'Eschambeault Date: Thu, 9 May 2024 10:20:02 -0400 Subject: [PATCH 2/4] build(deps): update eXolnet/laravel-html-list to v3 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 80e3b38..9238400 100644 --- a/composer.json +++ b/composer.json @@ -17,7 +17,7 @@ ], "require": { "php": "^8.1", - "exolnet/laravel-html-list": "^2.0.0", + "exolnet/laravel-html-list": "^3.0", "illuminate/support": "^9.0|^10.0" }, "require-dev": { From 8cb611fa734ae7f24978fd104595741274b8671c Mon Sep 17 00:00:00 2001 From: Alexandre D'Eschambeault Date: Thu, 9 May 2024 10:21:01 -0400 Subject: [PATCH 3/4] test: add php 8.3 to test matrix --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 389fae6..bf0854d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -10,7 +10,7 @@ jobs: strategy: fail-fast: true matrix: - php: [8.1, 8.2] + php: [8.1, 8.2, 8.3] laravel: [9.*, 10.*] dependency-version: [prefer-lowest, prefer-stable] include: From 76a3a4a64404a302e95633aed2da361117fe7c5c Mon Sep 17 00:00:00 2001 From: Alexandre D'Eschambeault Date: Thu, 9 May 2024 10:22:21 -0400 Subject: [PATCH 4/4] refactor: drop Laravel 9.x support which is not maintained anymore --- .github/workflows/tests.yml | 4 +--- composer.json | 4 ++-- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index bf0854d..b876235 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,11 +11,9 @@ jobs: fail-fast: true matrix: php: [8.1, 8.2, 8.3] - laravel: [9.*, 10.*] + laravel: [10.*] dependency-version: [prefer-lowest, prefer-stable] include: - - laravel: 9.* - testbench: 7.* - laravel: 10.* testbench: 8.* diff --git a/composer.json b/composer.json index 9238400..a98513c 100644 --- a/composer.json +++ b/composer.json @@ -18,12 +18,12 @@ "require": { "php": "^8.1", "exolnet/laravel-html-list": "^3.0", - "illuminate/support": "^9.0|^10.0" + "illuminate/support": "^10.0" }, "require-dev": { "exolnet/phpcs-config": "^2.0", "mockery/mockery": "^1.5.1", - "orchestra/testbench": "^7.0|^8.0", + "orchestra/testbench": "^8.0", "phpunit/phpunit": "^9.5.11", "squizlabs/php_codesniffer": "^3.7.1" },