Skip to content

Commit

Permalink
Merge pull request #138 from fezfez/php8.2-2
Browse files Browse the repository at this point in the history
Drop support php 7, add php 8.2 support
  • Loading branch information
Ocramius authored Oct 19, 2022
2 parents f72a112 + ad9267a commit 4ccca21
Show file tree
Hide file tree
Showing 7 changed files with 683 additions and 544 deletions.
4 changes: 3 additions & 1 deletion .laminas-ci.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{
"ignore_php_platform_requirements": {
"8.1": true
"8.0": true,
"8.1": true,
"8.2": true
}
}
17 changes: 11 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,17 @@
"config": {
"sort-packages": true,
"platform": {
"php": "7.3.99"
"php": "8.0.99"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"webimpress/composer-extra-dependency": true
}
},
"extra": {
},
"require": {
"php": "^7.3 || ~8.0.0 || ~8.1.0",
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
"container-interop/container-interop": "^1.2",
"laminas/laminas-eventmanager": "^3.4",
"laminas/laminas-http": "^2.15",
Expand All @@ -36,12 +40,13 @@
},
"require-dev": {
"http-interop/http-middleware": "^0.4.1",
"laminas/laminas-coding-standard": "^1.0.0",
"laminas/laminas-coding-standard": "^2.4.0",
"laminas/laminas-json": "^3.3",
"laminas/laminas-psr7bridge": "^1.0",
"laminas/laminas-psr7bridge": "^1.8",
"laminas/laminas-stratigility": ">=2.0.1 <2.2",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.5.5"
"phpspec/prophecy" : "^1.15.0",
"phpspec/prophecy-phpunit": "^2.0.1",
"phpunit/phpunit": "^9.5.25"
},
"suggest": {
"laminas/laminas-json": "(^2.6.1 || ^3.0) To auto-deserialize JSON body content in AbstractRestfulController extensions, when json_decode is unavailable",
Expand Down
Loading

0 comments on commit 4ccca21

Please sign in to comment.