Skip to content

Commit accb909

Browse files
authored
PHP 8.5 support (#152)
1 parent ac8a5f8 commit accb909

7 files changed

Lines changed: 8 additions & 7 deletions

File tree

.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.4']
30+
['8.5']
3131
secrets:
3232
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}

.github/workflows/rector.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ jobs:
2121
os: >-
2222
['ubuntu-latest']
2323
php: >-
24-
['8.4']
24+
['8.1']

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
## 3.1.1 under development
44

55
- New #150: Add `Ttl` value object for working with time-to-live duration (@Pekhov14)
6+
- Enh #152: Add PHP 8.5 support (@vjik)
67

78
## 3.1.0 June 01, 2025
89

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ providing own features. It is used in [Yii Framework](https://www.yiiframework.c
2727

2828
## Requirements
2929

30-
- PHP 8.1 or higher.
31-
- `Mbstring` PHP extension.
30+
- PHP 8.1 - 8.5.
31+
- `mbstring` PHP extension.
3232

3333
## Installation
3434

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
}
2929
],
3030
"require": {
31-
"php": "8.1 - 8.4",
31+
"php": "8.1 - 8.5",
3232
"ext-mbstring": "*",
3333
"psr/simple-cache": "^2.0 || ^3.0"
3434
},

0 commit comments

Comments
 (0)