Skip to content

Commit

Permalink
Merge pull request #9 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 53bd40d + 76e4072 commit 9e4128a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 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 @@ -2,6 +2,10 @@

All notable changes will be documented in this file

## 1.3.0 - 2024-12-04

- Add PHP 8.4 support

## 1.2.0 - 2024-02-27

- Add Laravel 11 support
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@

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.

| Version | Laravel | PHP |
|---------|--------------|-------------------------|
| 1.* | 10.* \| 11.* | 8.1.* \| 8.2.* \| 8.3.* |
| Version | Laravel | PHP |
|---------|--------------|----------------------------------|
| 1.* | 10.* \| 11.* | 8.1.* \| 8.2.* \| 8.3.* \| 8.4.* |

## Motivation

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",
"illuminate/contracts": "^10.0 || ^11.0"
},
"require-dev": {
Expand Down

0 comments on commit 9e4128a

Please sign in to comment.