Skip to content

Commit 9e4128a

Browse files
authored
Merge pull request #9 from bilfeldt/features/php84
Add PHP 8.4 support
2 parents 53bd40d + 76e4072 commit 9e4128a

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

.github/workflows/run-tests.yml

+3-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: ['10.*', '11.*']
2121
dependency-version: [prefer-stable]
2222
include:
@@ -27,6 +27,8 @@ jobs:
2727
exclude:
2828
- laravel: 11.*
2929
php: 8.1
30+
- laravel: 10.*
31+
php: 8.4
3032

3133
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }}
3234

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes will be documented in this file
44

5+
## 1.3.0 - 2024-12-04
6+
7+
- Add PHP 8.4 support
8+
59
## 1.2.0 - 2024-02-27
610

711
- Add Laravel 11 support

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99

1010
Create request Correlation-IDs via middleware and pass both this globally unique `Correlation-ID` and any user provided `Request-ID` to the global log context.
1111

12-
| Version | Laravel | PHP |
13-
|---------|--------------|-------------------------|
14-
| 1.* | 10.* \| 11.* | 8.1.* \| 8.2.* \| 8.3.* |
12+
| Version | Laravel | PHP |
13+
|---------|--------------|----------------------------------|
14+
| 1.* | 10.* \| 11.* | 8.1.* \| 8.2.* \| 8.3.* \| 8.4.* |
1515

1616
## Motivation
1717

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
}
2222
],
2323
"require": {
24-
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
24+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
2525
"illuminate/contracts": "^10.0 || ^11.0"
2626
},
2727
"require-dev": {

0 commit comments

Comments
 (0)