Skip to content

Commit 633a770

Browse files
authored
PHP 8.5 support (#282)
1 parent b8c7437 commit 633a770

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

.github/workflows/bc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ jobs:
3030
os: >-
3131
['ubuntu-latest']
3232
php: >-
33-
['8.4']
33+
['8.5']

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ jobs:
3131
os: >-
3232
['ubuntu-latest', 'windows-latest']
3333
php: >-
34-
['8.1', '8.2', '8.3', '8.4']
34+
['8.1', '8.2', '8.3', '8.4', '8.5']

.github/workflows/composer-require-checker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ jobs:
3131
os: >-
3232
['ubuntu-latest']
3333
php: >-
34-
['8.1', '8.2', '8.3', '8.4']
34+
['8.1', '8.2', '8.3', '8.4', '8.5']

.github/workflows/mutation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ jobs:
2727
os: >-
2828
['ubuntu-latest']
2929
php: >-
30-
['8.3']
30+
['8.5']
3131
secrets:
3232
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
## 2.1.0 April 04, 2025
88

99
- New #275: Add optional `$clock` parameter to `Manager` constructor to get current time (@vjik)
10-
- Chg #276: Change PHP constraint in `composer.json` to `8.1 - 8.4` (@vjik)
10+
- Chg #276, #282: Change PHP constraint in `composer.json` to `8.1 - 8.5` (@vjik)
1111
- Bug #264: Fix bug when default roles were not checked in `Manager::userHasPermission()` (@KovYu, @arogachev)
1212

1313
## 2.0.0 March 07, 2024

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ library. It is used in [Yii Framework](https://yiiframework.com) but is usable s
2828

2929
## Requirements
3030

31-
- PHP 8.1 or higher.
31+
- PHP 8.1 - 8.5.
3232

3333
## Installation
3434

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
}
2828
],
2929
"require": {
30-
"php": "8.1 - 8.4",
30+
"php": "8.1 - 8.5",
3131
"yiisoft/access": "2.0",
3232
"yiisoft/friendly-exception": "^1.1"
3333
},

0 commit comments

Comments
 (0)