Skip to content

Commit cb1bc39

Browse files
authored
Merge pull request #37 from bilfeldt/features/php84
Add PHP 8.4 support
2 parents 33bd973 + 2d2cf35 commit cb1bc39

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

.github/workflows/run-tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ jobs:
2727
exclude:
2828
- laravel: 11.*
2929
php: 8.1
30+
- laravel: 10.*
31+
php: 8.1
3032

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

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@ No breaking changes. The only changes are to the development dependencies used f
1717

1818
## Changes
1919

20+
### 3.4.0 - 2024-12-04
21+
22+
- Add PHP 8.4 support
23+
2024
### 3.3.0 - 2024-05-07
2125

2226
- Add config for which model to use in the `RequestLog` models `user()` relationship

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99

1010
Zero configuration logging of Requests and Responses to database or custom drivers in Laravel applications - no more issues debugging customer support requests.
1111

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

1818
## Installation
1919

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
}
2121
],
2222
"require": {
23-
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
23+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
2424
"illuminate/contracts": "^10.0 || ^11.0",
2525
"ext-json": "*",
2626
"bilfeldt/laravel-correlation-id": "^1.0"

0 commit comments

Comments
 (0)