Skip to content

Commit 902bfc7

Browse files
authored
Merge pull request #37 from jamwid07/patch-1
changed PHP version support till the latest
2 parents 8c915bb + 9e21664 commit 902bfc7

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

.github/workflows/run-tests.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
fail-fast: false
1717
matrix:
1818
os: [ubuntu-latest, windows-latest]
19-
php: [8.3, 8.2, 8.1]
19+
php: [8.4, 8.3, 8.2, 8.1]
2020
laravel: ['9.*', '10.*', '11.*']
2121
dependency-version: [prefer-stable]
2222
include:
@@ -29,6 +29,10 @@ jobs:
2929
exclude:
3030
- laravel: 11.*
3131
php: 8.1
32+
- laravel: 10.*
33+
php: 8.4
34+
- laravel: 10.*
35+
php: 8.3
3236

3337
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
3438

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010

1111
An easy yet very flexible logger for the Laravel HTTP Client.
1212

13-
| Version | Laravel | PHP |
14-
|---------|---------------------|-------------------------|
15-
| 1.* | 8.* \| 9.* | 7.4.* \| 8.0.* |
16-
| 2.* | 9.* \| 10.* \| 11.* | 8.1.* \| 8.2.* \| 8.3.* |
13+
| Version | Laravel | PHP |
14+
|---------|---------------------|----------------------------------|
15+
| 1.* | 8.* \| 9.* | 7.4.* \| 8.0.* |
16+
| 2.* | 9.* \| 10.* \| 11.* | 8.1.* \| 8.2.* \| 8.3.* \| 8.4.* |
1717

1818
## Installation
1919

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
}
2121
],
2222
"require": {
23-
"php": "~8.3.0 | ~8.2.0 | ~8.1.0",
23+
"php": "~8.4.0 | ~8.3.0 | ~8.2.0 | ~8.1.0",
2424
"ext-json": "*",
2525
"guzzlehttp/guzzle": "^7.2",
2626
"illuminate/http": "^9.0 || ^10.0 || ^11.0",

0 commit comments

Comments
 (0)