Skip to content

Commit cc5396b

Browse files
committed
Add PHP 8.5 support
1 parent 29002a3 commit cc5396b

File tree

9 files changed

+407
-328
lines changed

9 files changed

+407
-328
lines changed

.github/workflows/backward-compatibility-check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
dependencies:
1717
- "locked"
1818
php-version:
19-
- "8.4"
19+
- "8.5"
2020
operating-system:
2121
- "ubuntu-latest"
2222

.github/workflows/coding-standard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
dependencies:
2121
- "locked"
2222
php-version:
23-
- "8.4"
23+
- "8.5"
2424
operating-system:
2525
- "ubuntu-latest"
2626

.github/workflows/mutation-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
dependencies:
2121
- "locked"
2222
php-version:
23-
- "8.4"
23+
- "8.5"
2424
operating-system:
2525
- "ubuntu-latest"
2626

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
dependencies:
2121
- "locked"
2222
php-version:
23-
- "8.4"
23+
- "8.5"
2424
operating-system:
2525
- "ubuntu-latest"
2626

.github/workflows/unit.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,16 @@ jobs:
2424
- "8.2"
2525
- "8.3"
2626
- "8.4"
27+
- "8.5"
2728
operating-system:
2829
- "ubuntu-latest"
2930
- "windows-latest"
3031
include:
3132
- dependencies: "locked"
32-
php-version: "8.4"
33+
php-version: "8.5"
3334
operating-system: "ubuntu-latest"
3435
- dependencies: "locked"
35-
php-version: "8.4"
36+
php-version: "8.5"
3637
operating-system: "windows-latest"
3738

3839
steps:

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121
}
2222
],
2323
"require": {
24-
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
24+
"php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
2525
"patchlevel/event-sourcing": "^3.10.0",
2626
"phpunit/phpunit": "^10.5.45 || ^11.0.0 || ^12.0.0"
2727
},
2828
"require-dev": {
29-
"infection/infection": "^0.31.0",
29+
"infection/infection": "^0.31.9",
3030
"patchlevel/coding-standard": "^1.3.0",
3131
"phpstan/phpstan": "^2.1.0"
3232
},

0 commit comments

Comments
 (0)