Skip to content

Commit

Permalink
Merge pull request #65 from gsteel/PHP-8.2
Browse files Browse the repository at this point in the history
Add support for PHP 8.2, remove support for PHP 7.4
  • Loading branch information
Ocramius committed Oct 14, 2022
2 parents af8dae6 + fcf7b53 commit 4d0a7a5
Show file tree
Hide file tree
Showing 12 changed files with 152 additions and 245 deletions.
3 changes: 2 additions & 1 deletion .laminas-ci.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
"tidy"
],
"ignore_php_platform_requirements": {
"8.1": true
"8.1": false,
"8.2": true
}
}
18 changes: 9 additions & 9 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": "7.4.99"
"php": "8.0.99"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
Expand All @@ -29,24 +29,24 @@
"extra": {
},
"require": {
"php": "^7.4 || ~8.0.0 || ~8.1.0",
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
"ext-dom": "*",
"ext-libxml": "*",
"laminas/laminas-escaper": "^2.9",
"laminas/laminas-servicemanager": "^3.14.0",
"laminas/laminas-stdlib": "^3.6"
},
"require-dev": {
"laminas/laminas-cache": "^2.13.2 || ^3.1.3",
"laminas/laminas-cache-storage-adapter-memory": "^1.1.0 || ^2.0.0",
"laminas/laminas-cache": "^2.13.2 || ^3.6",
"laminas/laminas-cache-storage-adapter-memory": "^1.1.0 || ^2.1",
"laminas/laminas-coding-standard": "~2.4.0",
"laminas/laminas-db": "^2.13.3",
"laminas/laminas-http": "^2.15",
"laminas/laminas-validator": "^2.15",
"phpunit/phpunit": "^9.5.5",
"laminas/laminas-db": "^2.15",
"laminas/laminas-http": "^2.16",
"laminas/laminas-validator": "^2.26",
"phpunit/phpunit": "^9.5.25",
"psalm/plugin-phpunit": "^0.17.0",
"psr/http-message": "^1.0.1",
"vimeo/psalm": "^4.24.0"
"vimeo/psalm": "^4.29"
},
"conflict": {
"laminas/laminas-servicemanager": "<3.3",
Expand Down

0 comments on commit 4d0a7a5

Please sign in to comment.