Skip to content

Commit a931231

Browse files
committed
feat: PHP 8.5 compatibility
1 parent aa00215 commit a931231

File tree

5 files changed

+5
-3
lines changed

5 files changed

+5
-3
lines changed

.github/workflows/static-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
php-version: [8.1, 8.2, 8.3, 8.4]
15+
php-version: [8.1, 8.2, 8.3, 8.4, 8.5]
1616
composer-stability: [prefer-lowest, prefer-stable]
1717
operating-system:
1818
- ubuntu-latest

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
php: [8.1, 8.2, 8.3, 8.4]
14+
php: [8.1, 8.2, 8.3, 8.4, 8.5]
1515
os: [ubuntu-latest, windows-latest]
1616
stability: [prefer-lowest, prefer-stable]
1717

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
1010
### Added
1111

1212
- Added sensitive parameter to avoid sensitive data being included in stack traces (PR #1483)
13+
- Support for PHP 8.5 (PR #1492)
1314

1415
### Fixed
1516

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ The latest version of this package supports the following versions of PHP:
3636
* PHP 8.2
3737
* PHP 8.3
3838
* PHP 8.4
39+
* PHP 8.5
3940

4041
The `openssl` and `json` extensions are also required.
4142

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"homepage": "https://oauth2.thephpleague.com/",
55
"license": "MIT",
66
"require": {
7-
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
7+
"php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
88
"ext-openssl": "*",
99
"league/event": "^3.0",
1010
"league/uri": "^7.0",

0 commit comments

Comments
 (0)