Skip to content

Commit

Permalink
Merge pull request #29 from gsteel/drop-php-8.0-upgrade-phpunit
Browse files Browse the repository at this point in the history
Remove support for PHP 8.0, Upgrade PHPUnit to 10.x
  • Loading branch information
Ocramius committed Jun 28, 2023
2 parents f107711 + 9335cb6 commit 2ea0d98
Show file tree
Hide file tree
Showing 11 changed files with 580 additions and 627 deletions.
3 changes: 3 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@
/phpcs.xml export-ignore
/phpunit.xml.dist export-ignore
/test/ export-ignore
/psalm.xml export-ignore
/renovate.json export-ignore
/.laminas-ci.json export-ignore
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/.phpcs-cache
/.phpunit.result.cache
/.phpunit.cache
/clover.xml
/docs/html/
/laminas-mkdoc-theme.tgz
Expand Down
5 changes: 1 addition & 4 deletions .laminas-ci.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
{
"ignore_php_platform_requirements": {
"8.2": true
}
}
}
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"config": {
"sort-packages": true,
"platform": {
"php": "8.0.99"
"php": "8.1.99"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
Expand All @@ -35,15 +35,15 @@
}
},
"require": {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
"php": "~8.1.0 || ~8.2.0",
"mezzio/mezzio-session": "^1.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"laminas/laminas-coding-standard": "~2.5.0",
"phpunit/phpunit": "^9.5.26",
"psalm/plugin-phpunit": "^0.18.0",
"vimeo/psalm": "^5.0.0"
"phpunit/phpunit": "^10.2.2",
"psalm/plugin-phpunit": "^0.18.4",
"vimeo/psalm": "^5.13.1"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit 2ea0d98

Please sign in to comment.