Skip to content
This repository was archived by the owner on Sep 14, 2023. It is now read-only.

Commit d4e6864

Browse files
authored
Merge pull request #27 from patchlevel/php8-support
add php8 support
2 parents f1c7ef0 + a4756b6 commit d4e6864

File tree

3 files changed

+104
-97
lines changed

3 files changed

+104
-97
lines changed

.github/workflows/phpunit.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ jobs:
2222
- "locked"
2323
php-version:
2424
- "7.4"
25+
- "8.0"
2526
operating-system:
2627
- "ubuntu-latest"
2728
- "windows-latest"

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@
1818
}
1919
],
2020
"require": {
21-
"php": "^7.4",
22-
"ext-json": "^7.4"
21+
"php": "^7.4|^8.0",
22+
"ext-json": "^7.4|^8.0"
2323
},
2424
"require-dev": {
25-
"infection/infection": "^0.20.1",
25+
"infection/infection": "^0.20.2",
2626
"patchlevel/coding-standard": "^1.0.0",
27-
"phpstan/phpstan": "^0.12.56",
28-
"phpunit/phpunit": "^9.4.3",
29-
"symfony/var-dumper": "^5.1",
30-
"vimeo/psalm": "^4.1.1"
27+
"phpstan/phpstan": "^0.12.58",
28+
"phpunit/phpunit": "^9.4.4",
29+
"symfony/var-dumper": "^5.2.0",
30+
"vimeo/psalm": "^4.3.1"
3131
},
3232
"config": {
3333
"preferred-install": {

0 commit comments

Comments
 (0)