Skip to content

Commit

Permalink
Merge pull request #45 from gsteel/drop-php-8-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 authored Oct 18, 2023
2 parents 9cfa79c + f6ce882 commit 4a57692
Show file tree
Hide file tree
Showing 14 changed files with 742 additions and 907 deletions.
4 changes: 1 addition & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
/.phpcs-cache
/.phpunit.result.cache
/clover.xml
/coveralls-upload.json
/.phpunit
/doc/html/
/laminas-mkdoc-theme.tgz
/laminas-mkdoc-theme/
Expand Down
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"config": {
"sort-packages": true,
"platform": {
"php": "8.0.99"
"php": "8.1.99"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
Expand All @@ -30,16 +30,16 @@
"extra": {
},
"require": {
"php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0"
"php": "~8.1.0 || ~8.2.0 || ~8.3.0"
},
"require-dev": {
"laminas/laminas-coding-standard": "~2.5.0",
"laminas/laminas-stdlib": "^3.15",
"phpbench/phpbench": "^1.2.7",
"phpunit/phpunit": "^9.5.26",
"psalm/plugin-phpunit": "^0.18.0",
"laminas/laminas-stdlib": "^3.17",
"phpbench/phpbench": "^1.2.10",
"phpunit/phpunit": "^10.4.1",
"psalm/plugin-phpunit": "^0.18.4",
"psr/container": "^1.1.2 || ^2.0.2",
"vimeo/psalm": "^5.0.0"
"vimeo/psalm": "^5.11"
},
"suggest": {
"psr/container": "^1.1.2 || ^2.0.2, to use the lazy listeners feature",
Expand Down
Loading

0 comments on commit 4a57692

Please sign in to comment.