Skip to content

Commit

Permalink
Merge pull request #22 from gsteel/drop-php-8.0-upgrade-phpunit
Browse files Browse the repository at this point in the history
Drop support for PHP 8.0, Upgrade PHPUnit to ^10
  • Loading branch information
Ocramius authored Mar 20, 2023
2 parents 06ad1eb + 32e6750 commit 8cba441
Show file tree
Hide file tree
Showing 15 changed files with 424 additions and 468 deletions.
2 changes: 0 additions & 2 deletions .coveralls.yml

This file was deleted.

6 changes: 5 additions & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
/.coveralls.yml export-ignore
/.gitattributes export-ignore
/.github/ export-ignore
/.gitignore export-ignore
Expand All @@ -7,3 +6,8 @@
/phpcs.xml export-ignore
/phpunit.xml.dist export-ignore
/test/ export-ignore
/.laminas-ci.json export-ignore
/composer.lock export-ignore
/renovate.json export-ignore
/psalm.xml export-ignore
/psalm-baseline.xml 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
/coveralls-upload.json
/docs/html/
Expand Down
4 changes: 2 additions & 2 deletions .laminas-ci.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"ignore_php_platform_requirements": {
"8.2": true
"8.2": false
}
}
}
11 changes: 5 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"dealerdirect/phpcodesniffer-composer-installer": true
},
"platform": {
"php": "8.0.99"
"php": "8.1.99"
}
},
"extra": {
Expand All @@ -35,19 +35,18 @@
}
},
"require": {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
"php": "~8.1.0 || ~8.2.0",
"mezzio/mezzio-session": "^1.0",
"psr/container": "^1.0 || ^2.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"laminas/laminas-coding-standard": "~2.5.0",
"mezzio/mezzio-flash": "^1.5.0",
"phpunit/phpunit": "^9.5.26",
"vimeo/psalm": "^5.0.0"
"mezzio/mezzio-flash": "^1.6",
"phpunit/phpunit": "^10.0.17",
"vimeo/psalm": "^5.8"
},
"conflict": {
"phpspec/prophecy": "<1.7.2",
"zendframework/zend-expressive-csrf": "*"
},
"suggest": {
Expand Down
Loading

0 comments on commit 8cba441

Please sign in to comment.