Skip to content

Commit 1c93b9f

Browse files
authored
Merge pull request #25 from patchlevel/php84
add php 8.4 support, drop php 8.1
2 parents a8d4992 + 9922b04 commit 1c93b9f

9 files changed

Lines changed: 1036 additions & 635 deletions

File tree

.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
@@ -21,17 +21,17 @@ jobs:
2121
- "lowest"
2222
- "highest"
2323
php-version:
24-
- "8.1"
2524
- "8.2"
2625
- "8.3"
26+
- "8.4"
2727
operating-system:
2828
- "ubuntu-latest"
2929
include:
3030
- dependencies: "locked"
31-
php-version: "8.3"
31+
php-version: "8.4"
3232
operating-system: "ubuntu-latest"
3333
- dependencies: "locked"
34-
php-version: "8.3"
34+
php-version: "8.4"
3535
operating-system: "windows-latest"
3636

3737
steps:

composer.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,21 +19,20 @@
1919
}
2020
],
2121
"require": {
22-
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
22+
"php": "~8.2.0 || ~8.3.0 || ~8.4.0",
2323
"symfony/event-dispatcher": "^5.4.26|^6.4.0|^7.0.0"
2424
},
2525
"require-dev": {
26-
"cspray/phinal": "^2.0.0",
27-
"infection/infection": "^0.27.8",
26+
"infection/infection": "^0.29.10",
2827
"patchlevel/coding-standard": "^1.3.0",
2928
"phpbench/phpbench": "^1.2.15",
3029
"phpspec/prophecy-phpunit": "^2.1.0",
31-
"phpstan/phpstan": "^1.10.49",
32-
"phpunit/phpunit": "^10.5.2",
30+
"phpstan/phpstan": "^2.1.2",
31+
"phpunit/phpunit": "^11.5.3",
3332
"psalm/plugin-phpunit": "^0.19.0",
3433
"roave/infection-static-analysis-plugin": "^1.34.0",
3534
"symfony/var-dumper": "^5.4.29|^6.4.0|^7.0.0",
36-
"vimeo/psalm": "^5.17.0"
35+
"vimeo/psalm": "^6.0.0"
3736
},
3837
"config": {
3938
"preferred-install": {

0 commit comments

Comments
 (0)