Skip to content

Commit e60410f

Browse files
authored
Merge pull request #61 from patchlevel/php84
support php 8.4
2 parents 5c13ba0 + 369dc02 commit e60410f

File tree

12 files changed

+700
-363
lines changed

12 files changed

+700
-363
lines changed

.github/workflows/benchmark.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.3"
19+
- "8.4"
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.3"
23+
- "8.4"
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.3"
23+
- "8.4"
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.3"
23+
- "8.4"
2424
operating-system:
2525
- "ubuntu-latest"
2626

.github/workflows/psalm.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.3"
23+
- "8.4"
2424
operating-system:
2525
- "ubuntu-latest"
2626

.github/workflows/unit.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ jobs:
2323
php-version:
2424
- "8.2"
2525
- "8.3"
26+
- "8.4"
2627
operating-system:
2728
- "ubuntu-latest"
2829
include:
2930
- dependencies: "locked"
30-
php-version: "8.3"
31+
php-version: "8.4"
3132
operating-system: "ubuntu-latest"
3233
- dependencies: "locked"
33-
php-version: "8.3"
34+
php-version: "8.4"
3435
operating-system: "windows-latest"
35-
3636
steps:
3737
- name: "Checkout"
3838
uses: actions/checkout@v4

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ phpunit: vendor
3535

3636
.PHONY: infection
3737
infection: vendor ## run infection
38-
vendor/bin/infection
38+
XDEBUG_MODE=coverage vendor/bin/infection
3939

4040
.PHONY: static
4141
static: psalm phpstan phpcs-check ## run static analyser

composer.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,24 +19,23 @@
1919
}
2020
],
2121
"require": {
22-
"php": "~8.2.0 || ~8.3.0",
22+
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
2323
"ext-openssl": "*",
2424
"symfony/type-info": "^7.2.2"
2525
},
2626
"require-dev": {
27-
"cspray/phinal": "^2.0.0",
28-
"infection/infection": "^0.27.8",
27+
"infection/infection": "^0.29.10",
2928
"patchlevel/coding-standard": "^1.3.0",
3029
"psr/cache": "^2.0.0|^3.0.0",
3130
"psr/simple-cache": "^2.0.0|^3.0.0",
3231
"phpbench/phpbench": "^1.2.15",
3332
"phpspec/prophecy-phpunit": "^2.1.0",
3433
"phpstan/phpstan": "^2.1.0",
3534
"phpunit/phpunit": "^10.5.2",
36-
"psalm/plugin-phpunit": "^0.19.0",
37-
"roave/infection-static-analysis-plugin": "^1.34.0",
35+
"psalm/plugin-phpunit": "^0.19.2",
36+
"roave/infection-static-analysis-plugin": "^1.36.0",
3837
"symfony/var-dumper": "^5.4.29|^6.4.0|^7.0.0",
39-
"vimeo/psalm": "^5.17.0"
38+
"vimeo/psalm": "^6.0.0"
4039
},
4140
"config": {
4241
"preferred-install": {

0 commit comments

Comments
 (0)