From 2a5fbe20f3bbe2a728a0bd25e858773861a83418 Mon Sep 17 00:00:00 2001 From: Jamshid Date: Tue, 24 Dec 2024 12:30:35 +0500 Subject: [PATCH 1/4] changed PHP version support till the latest changed PHP version requirement to support latest versions starting from 8.1 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 0e98ab4..850fcd7 100644 --- a/composer.json +++ b/composer.json @@ -20,7 +20,7 @@ } ], "require": { - "php": "~8.3.0 | ~8.2.0 | ~8.1.0", + "php": "^8.1", "ext-json": "*", "guzzlehttp/guzzle": "^7.2", "illuminate/http": "^9.0 || ^10.0 || ^11.0", From a5167436ad8d13ca68d4ba26d5635205e6198845 Mon Sep 17 00:00:00 2001 From: Jamshid Date: Tue, 24 Dec 2024 12:39:59 +0500 Subject: [PATCH 2/4] add PHP v8.4 support --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 9ca9412..44014f0 100644 --- a/README.md +++ b/README.md @@ -10,10 +10,10 @@ An easy yet very flexible logger for the Laravel HTTP Client. -| Version | Laravel | PHP | -|---------|---------------------|-------------------------| -| 1.* | 8.* \| 9.* | 7.4.* \| 8.0.* | -| 2.* | 9.* \| 10.* \| 11.* | 8.1.* \| 8.2.* \| 8.3.* | +| Version | Laravel | PHP | +|---------|---------------------|----------------------------------| +| 1.* | 8.* \| 9.* | 7.4.* \| 8.0.* | +| 2.* | 9.* \| 10.* \| 11.* | 8.1.* \| 8.2.* \| 8.3.* \| 8.4.* | ## Installation From 17407b0f9920fd2f21ab90b3f18cc456a5851694 Mon Sep 17 00:00:00 2001 From: Bilfeldt Date: Wed, 25 Dec 2024 23:47:12 +0100 Subject: [PATCH 3/4] Update github test workflow --- .github/workflows/run-tests.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 9e5dbd5..fc401cf 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -16,7 +16,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest] - php: [8.3, 8.2, 8.1] + php: [8.4, 8.3, 8.2, 8.1] laravel: ['9.*', '10.*', '11.*'] dependency-version: [prefer-stable] include: @@ -29,6 +29,10 @@ jobs: exclude: - laravel: 11.* php: 8.1 + - laravel: 10.* + php: 8.4 + - laravel: 10.* + php: 8.3 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }} From 9e21664e28e74c6f0f5ea9d18d39020b6590fba5 Mon Sep 17 00:00:00 2001 From: Bilfeldt Date: Wed, 25 Dec 2024 23:48:16 +0100 Subject: [PATCH 4/4] Update composer.json php version constraint --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 850fcd7..d0ea4e4 100644 --- a/composer.json +++ b/composer.json @@ -20,7 +20,7 @@ } ], "require": { - "php": "^8.1", + "php": "~8.4.0 | ~8.3.0 | ~8.2.0 | ~8.1.0", "ext-json": "*", "guzzlehttp/guzzle": "^7.2", "illuminate/http": "^9.0 || ^10.0 || ^11.0",