Skip to content

Commit 9b324c8

Browse files
authored
[7.8.x] Backport PHP 8.5 support (#1061)
1 parent 246b354 commit 9b324c8

File tree

3 files changed

+13
-12
lines changed

3 files changed

+13
-12
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ jobs:
6565
- "8.2"
6666
- "8.3"
6767
- "8.4"
68+
- "8.5"
6869
dependencies:
6970
- "lowest"
7071
- "highest"

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.4
1+
FROM php:8.5
22

33
# git needed for Infection
44
RUN apt-get update \

composer.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -33,31 +33,31 @@
3333
}
3434
],
3535
"require": {
36-
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
36+
"php": "~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0",
3737
"ext-dom": "*",
3838
"ext-pcre": "*",
3939
"ext-reflection": "*",
4040
"ext-simplexml": "*",
41-
"fidry/cpu-core-counter": "^1.2.0",
41+
"fidry/cpu-core-counter": "^1.3.0",
4242
"jean85/pretty-package-versions": "^2.1.1",
43-
"phpunit/php-code-coverage": "^11.0.10",
43+
"phpunit/php-code-coverage": "^11.0.12",
4444
"phpunit/php-file-iterator": "^5.1.0",
4545
"phpunit/php-timer": "^7.0.1",
46-
"phpunit/phpunit": "^11.5.24",
46+
"phpunit/phpunit": "^11.5.46",
4747
"sebastian/environment": "^7.2.1",
48-
"symfony/console": "^6.4.22 || ^7.3.4 || ^8.0.0",
49-
"symfony/process": "^6.4.20 || ^7.3.4 || ^8.0.0"
48+
"symfony/console": "^6.4.22 || ^7.3.4 || ^8.0.3",
49+
"symfony/process": "^6.4.20 || ^7.3.4 || ^8.0.3"
5050
},
5151
"require-dev": {
5252
"ext-pcov": "*",
5353
"ext-posix": "*",
5454
"doctrine/coding-standard": "^12.0.0",
55-
"phpstan/phpstan": "^2.1.17",
55+
"phpstan/phpstan": "^2.1.33",
5656
"phpstan/phpstan-deprecation-rules": "^2.0.3",
57-
"phpstan/phpstan-phpunit": "^2.0.6",
58-
"phpstan/phpstan-strict-rules": "^2.0.4",
59-
"squizlabs/php_codesniffer": "^3.13.2",
60-
"symfony/filesystem": "^6.4.13 || ^7.3.2 || ^8.0.0"
57+
"phpstan/phpstan-phpunit": "^2.0.11",
58+
"phpstan/phpstan-strict-rules": "^2.0.7",
59+
"squizlabs/php_codesniffer": "^3.13.5",
60+
"symfony/filesystem": "^6.4.13 || ^7.3.2 || ^8.0.1"
6161
},
6262
"autoload": {
6363
"psr-4": {

0 commit comments

Comments
 (0)