Skip to content

Commit

Permalink
Merge pull request #37 from bilfeldt/features/php84
Browse files Browse the repository at this point in the history
Add PHP 8.4 support
  • Loading branch information
bilfeldt authored Dec 4, 2024
2 parents 33bd973 + 2d2cf35 commit cb1bc39
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ jobs:
exclude:
- laravel: 11.*
php: 8.1
- laravel: 10.*
php: 8.1

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

Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ No breaking changes. The only changes are to the development dependencies used f

## Changes

### 3.4.0 - 2024-12-04

- Add PHP 8.4 support

### 3.3.0 - 2024-05-07

- Add config for which model to use in the `RequestLog` models `user()` relationship
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@

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

| Version | Laravel | PHP |
|---------|-------------|-------------------------|
| 1.* | 8.* \| 9.* | 7.4.* \| 8.0.* \| 8.1.* |
| 2.* | 10.* | 8.1.* \| 8.2.* |
| 3.* | 10.* | 8.1.* \| 8.2.* |
| Version | Laravel | PHP |
|---------|-------------|----------------------------------|
| 1.* | 8.* \| 9.* | 7.4.* \| 8.0.* \| 8.1.* |
| 2.* | 10.* | 8.1.* \| 8.2.* |
| 3.* | 10.* | 8.1.* \| 8.2.* \| 8.3.* \| 8.4.* |

## Installation

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
}
],
"require": {
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
"illuminate/contracts": "^10.0 || ^11.0",
"ext-json": "*",
"bilfeldt/laravel-correlation-id": "^1.0"
Expand Down

0 comments on commit cb1bc39

Please sign in to comment.