Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading