Skip to content

Commit

Permalink
Merge pull request #97 from ghostwriter/feature/php-8.2-support
Browse files Browse the repository at this point in the history
Add support for PHP 8.2, drop support for PHP 7.4
  • Loading branch information
Ocramius committed Dec 9, 2022
2 parents a80a585 + 79ce443 commit 400c5dd
Show file tree
Hide file tree
Showing 27 changed files with 707 additions and 726 deletions.
2 changes: 0 additions & 2 deletions .coveralls.yml

This file was deleted.

6 changes: 6 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
/.gitattributes export-ignore
/.github/ export-ignore
/.laminas-ci.json export-ignore
/phpcs.xml.dist export-ignore
/phpunit.xml.dist export-ignore
/psalm.xml.dist export-ignore
/psalm-baseline.xml export-ignore
/renovate.json export-ignore
4 changes: 1 addition & 3 deletions .laminas-ci.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,5 @@
"--no-plugins"
],
"ignore_php_platform_requirements": {
"8.0": false,
"8.1": false
}
}
}
7 changes: 5 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@
"dealerdirect/phpcodesniffer-composer-installer": true,
"composer/package-versions-deprecated": true,
"laminas/laminas-component-installer": true
},
"platform": {
"php": "8.0.99"
}
},
"extra": {
Expand All @@ -41,7 +44,7 @@
}
},
"require": {
"php": "^7.4 || ~8.0.0 || ~8.1.0",
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
"composer/package-versions-deprecated": "^1.10.99",
"laminas/laminas-component-installer": "^2.6 || ^3.0",
"laminas/laminas-config-aggregator": "^1.6",
Expand All @@ -64,11 +67,11 @@
"mezzio/mezzio-laminasrouter": "^3.1.0",
"mezzio/mezzio-laminasviewrenderer": "^2.3.0",
"mezzio/mezzio-platesrenderer": "^2.3.0",
"mezzio/mezzio-tooling": "^2.1",
"mezzio/mezzio-twigrenderer": "^2.7.0",
"mikey179/vfsstream": "^1.6.10",
"phpunit/phpunit": "^9.5.11",
"psalm/plugin-phpunit": "^0.18.0",
"mezzio/mezzio-tooling": "^2.8",
"roave/security-advisories": "dev-master",
"vimeo/psalm": "^5.0"
},
Expand Down

0 comments on commit 400c5dd

Please sign in to comment.