Skip to content

Commit

Permalink
Merge pull request #44 from graydav1/main
Browse files Browse the repository at this point in the history
Add PHP ~8.4.0 support
  • Loading branch information
bilfeldt authored Dec 4, 2024
2 parents 9798996 + fac19db commit 55e7e22
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.3, 8.2, 8.1]
php: [8.4, 8.3, 8.2, 8.1]
laravel: ['10.*', '11.*']
dependency-version: [prefer-stable]
include:
Expand All @@ -27,6 +27,8 @@ jobs:
exclude:
- laravel: 11.*
php: 8.1
- laravel: 10.*
php: 8.4

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 @@ -14,6 +14,10 @@ No breaking changes. The only changes are to the development dependencies used f

## Changes

### 3.5.0- 2024-12-04

- Add PHP 8.4 compatibility

### 3.4.0 - 2024-05-10

- Add config for which model to use in the `RouteStatistic` 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 @@

Log Laravel requests and responses for statistical purposes and optionally aggregate by hours/days/months for minimal db requirements.

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

## Description

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,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",
"bilfeldt/laravel-request-logger": "^3.0",
"illuminate/contracts": "^10.0 || ^11.0",
"laravel/framework": "^10.0 || ^11.0"
Expand Down

0 comments on commit 55e7e22

Please sign in to comment.