Skip to content

Commit 327b9c7

Browse files
authored
Merge pull request #26 from gsteel/drop-php-8.0-update-phpunit
Drop support for PHP 8.0, Upgrade PHPUnit to 10.x
2 parents 86fc39f + 4a6f29d commit 327b9c7

File tree

9 files changed

+411
-431
lines changed

9 files changed

+411
-431
lines changed

.gitattributes

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1-
/.coveralls.yml export-ignore
2-
/.docheader export-ignore
31
/.gitattributes export-ignore
42
/.github/ export-ignore
53
/.gitignore export-ignore
64
/docs/ export-ignore
75
/phpcs.xml export-ignore
86
/phpunit.xml.dist export-ignore
97
/test/ export-ignore
8+
/composer.lock export-ignore
9+
/.laminas-ci.json export-ignore
10+
/renovate.json export-ignore
11+
/psalm.xml export-ignore
12+
/psalm-baseline.xml export-ignore

.gitignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
/.phpcs-cache
2-
/.phpunit.result.cache
3-
/clover.xml
4-
/coveralls-upload.json
2+
/.phpunit.cache
53
/phpunit.xml
64
/vendor/

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,20 @@
1919
"config": {
2020
"sort-packages": true,
2121
"platform": {
22-
"php": "8.0.99"
22+
"php": "8.1.99"
2323
},
2424
"allow-plugins": {
2525
"dealerdirect/phpcodesniffer-composer-installer": true
2626
}
2727
},
2828
"require": {
29-
"php": "~8.0.0 || ~8.1.0 || ~8.2.0"
29+
"php": "~8.1.0 || ~8.2.0"
3030
},
3131
"require-dev": {
3232
"laminas/laminas-coding-standard": "~2.5.0",
33-
"phpunit/phpunit": "^9.5.26",
34-
"psalm/plugin-phpunit": "^0.18.0",
35-
"vimeo/psalm": "^5.0.0"
33+
"phpunit/phpunit": "^10.0.19",
34+
"psalm/plugin-phpunit": "^0.18.4",
35+
"vimeo/psalm": "^5.9"
3636
},
3737
"suggest": {
3838
"mezzio/mezzio-laminasviewrenderer": "^2.0 to use the laminas-view PhpRenderer template renderer",

0 commit comments

Comments
 (0)