Skip to content

Commit

Permalink
Merge pull request #24 from rogervila/php-82-support
Browse files Browse the repository at this point in the history
Drop PHP 7, add PHP 8.2 Support
  • Loading branch information
Ocramius authored Jan 9, 2023
2 parents a656389 + 9a15911 commit ae6c8d3
Show file tree
Hide file tree
Showing 10 changed files with 873 additions and 787 deletions.
19 changes: 13 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,21 @@
"forum": "https://discourse.laminas.dev"
},
"config": {
"sort-packages": true
"sort-packages": true,
"platform": {
"php": "8.0.99"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"laminas": {
"module": "Laminas\\ApiTools\\ApiProblem"
}
},
"require": {
"php": "^7.3 || ~8.0.0 || ~8.1.0",
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
"ext-json": "*",
"laminas/laminas-eventmanager": "^2.6.3 || ^3.0.1",
"laminas/laminas-http": "^2.15.1",
Expand All @@ -39,9 +45,9 @@
"require-dev": {
"laminas/laminas-coding-standard": "~2.3.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.3",
"psalm/plugin-phpunit": "^0.16.0",
"vimeo/psalm": "^4.7"
"phpunit/phpunit": "^9.5.27",
"psalm/plugin-phpunit": "^0.16.1",
"vimeo/psalm": "^4.30"
},
"autoload": {
"psr-4": {
Expand All @@ -61,7 +67,8 @@
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"static-analysis": "psalm --shepherd --stats"
},
"replace": {
"zfcampus/zf-api-problem": "^1.3.0"
Expand Down
Loading

0 comments on commit ae6c8d3

Please sign in to comment.