Skip to content

Commit

Permalink
Add PHP 8.1 support
Browse files Browse the repository at this point in the history
  • Loading branch information
bilfeldt committed Sep 27, 2023
1 parent 1eaa3c9 commit 60df5bd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest]
php: [8.2]
php: [8.2, 8.1]
laravel: [10.*]
dependency-version: [prefer-stable]
include:
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.* | 8.2.* |
| Version | Laravel | PHP |
|---------|-------------|-------------------------|
| 1.* | 10.* | 8.1.* \| 8.2.* |

## 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.2.0",
"php": "~8.1.0 || ~8.2.0",
"illuminate/contracts": "^10.0"
},
"require-dev": {
Expand Down

0 comments on commit 60df5bd

Please sign in to comment.