Skip to content

Commit 41259d6

Browse files
authored
Merge pull request #29 from gsteel/drop-php8-update-phpunit
Drop support for PHP 8.0, Upgrade PHPUnit to 10.x
2 parents a8dc006 + 52ce3ef commit 41259d6

9 files changed

+404
-449
lines changed

.gitignore

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
/.phpcs-cache
2-
/.phpunit.result.cache
3-
/clover.xml
4-
/coveralls-upload.json
2+
/.phpunit.cache
53
/docs/html/
64
/laminas-mkdoc-theme.tgz
75
/laminas-mkdoc-theme/

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"dealerdirect/phpcodesniffer-composer-installer": true
2424
},
2525
"platform": {
26-
"php": "8.0.99"
26+
"php": "8.1.99"
2727
},
2828
"sort-packages": true
2929
},
@@ -33,17 +33,17 @@
3333
}
3434
},
3535
"require": {
36-
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
36+
"php": "~8.1.0 || ~8.2.0",
3737
"mezzio/mezzio-authentication": "^1.0",
3838
"psr/container": "^1.0 || ^2.0",
3939
"psr/http-factory": "^1.0",
4040
"psr/http-message": "^1.0.1"
4141
},
4242
"require-dev": {
4343
"laminas/laminas-coding-standard": "~2.5.0",
44-
"phpunit/phpunit": "^9.5.26",
45-
"psalm/plugin-phpunit": "^0.18.0",
46-
"vimeo/psalm": "^5.0"
44+
"phpunit/phpunit": "^10.0.19",
45+
"psalm/plugin-phpunit": "^0.18.4",
46+
"vimeo/psalm": "^5.9"
4747
},
4848
"autoload": {
4949
"psr-4": {

0 commit comments

Comments
 (0)