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

Commit 9e8ff3a

Browse files
authored
Merge pull request #13 from glo71317/php8.2-compatibility
Drop PHP 7, add PHP 8.2 support
2 parents 2325f54 + 37a62dd commit 9e8ff3a

File tree

2 files changed

+330
-671
lines changed

2 files changed

+330
-671
lines changed

composer.json

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,14 @@
1616
"forum": "https://discourse.laminas.dev"
1717
},
1818
"config": {
19-
"sort-packages": true
19+
"sort-packages": true,
20+
"platform": {
21+
"php": "8.0.99"
22+
}
2023
},
2124
"require": {
22-
"php": "^7.3 || ~8.0.0 || ~8.1.0",
23-
"laminas/laminas-stdlib": "^2.7.7 || ^3.1"
25+
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
26+
"laminas/laminas-stdlib": "^2.7.7 || ^3.15.0"
2427
},
2528
"require-dev": {
2629
"laminas/laminas-coding-standard": "~1.0.0",
@@ -54,8 +57,10 @@
5457
],
5558
"cs-check": "phpcs",
5659
"cs-fix": "phpcbf",
57-
"test": "phpunit --colors=always",
58-
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
60+
"test": "phpunit --colors=always --testsuite \"unit test\"",
61+
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
62+
"test-integration": "phpunit --colors=always --testsuite \"integration test\"",
63+
"upload-coverage": "coveralls -v"
5964
},
6065
"conflict": {
6166
"zendframework/zend-file": "*"

0 commit comments

Comments
 (0)