Skip to content
This repository has been archived by the owner on Dec 5, 2024. It is now read-only.

Commit

Permalink
Merge pull request #13 from glo71317/php8.2-compatibility
Browse files Browse the repository at this point in the history
Drop PHP 7, add PHP 8.2 support
  • Loading branch information
Ocramius authored Nov 21, 2022
2 parents 2325f54 + 37a62dd commit 9e8ff3a
Show file tree
Hide file tree
Showing 2 changed files with 330 additions and 671 deletions.
15 changes: 10 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,14 @@
"forum": "https://discourse.laminas.dev"
},
"config": {
"sort-packages": true
"sort-packages": true,
"platform": {
"php": "8.0.99"
}
},
"require": {
"php": "^7.3 || ~8.0.0 || ~8.1.0",
"laminas/laminas-stdlib": "^2.7.7 || ^3.1"
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
"laminas/laminas-stdlib": "^2.7.7 || ^3.15.0"
},
"require-dev": {
"laminas/laminas-coding-standard": "~1.0.0",
Expand Down Expand Up @@ -54,8 +57,10 @@
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
"test": "phpunit --colors=always --testsuite \"unit test\"",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
"test-integration": "phpunit --colors=always --testsuite \"integration test\"",
"upload-coverage": "coveralls -v"
},
"conflict": {
"zendframework/zend-file": "*"
Expand Down
Loading

0 comments on commit 9e8ff3a

Please sign in to comment.