Skip to content

Commit 400c5dd

Browse files
authored
Merge pull request #97 from ghostwriter/feature/php-8.2-support
Add support for PHP 8.2, drop support for PHP 7.4
2 parents a80a585 + 79ce443 commit 400c5dd

27 files changed

+707
-726
lines changed

.coveralls.yml

-2
This file was deleted.

.gitattributes

+6
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,8 @@
11
/.gitattributes export-ignore
22
/.github/ export-ignore
3+
/.laminas-ci.json export-ignore
4+
/phpcs.xml.dist export-ignore
5+
/phpunit.xml.dist export-ignore
6+
/psalm.xml.dist export-ignore
7+
/psalm-baseline.xml export-ignore
8+
/renovate.json export-ignore

.laminas-ci.json

+1-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,5 @@
44
"--no-plugins"
55
],
66
"ignore_php_platform_requirements": {
7-
"8.0": false,
8-
"8.1": false
97
}
10-
}
8+
}

composer.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@
2828
"dealerdirect/phpcodesniffer-composer-installer": true,
2929
"composer/package-versions-deprecated": true,
3030
"laminas/laminas-component-installer": true
31+
},
32+
"platform": {
33+
"php": "8.0.99"
3134
}
3235
},
3336
"extra": {
@@ -41,7 +44,7 @@
4144
}
4245
},
4346
"require": {
44-
"php": "^7.4 || ~8.0.0 || ~8.1.0",
47+
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
4548
"composer/package-versions-deprecated": "^1.10.99",
4649
"laminas/laminas-component-installer": "^2.6 || ^3.0",
4750
"laminas/laminas-config-aggregator": "^1.6",
@@ -64,11 +67,11 @@
6467
"mezzio/mezzio-laminasrouter": "^3.1.0",
6568
"mezzio/mezzio-laminasviewrenderer": "^2.3.0",
6669
"mezzio/mezzio-platesrenderer": "^2.3.0",
67-
"mezzio/mezzio-tooling": "^2.1",
6870
"mezzio/mezzio-twigrenderer": "^2.7.0",
6971
"mikey179/vfsstream": "^1.6.10",
7072
"phpunit/phpunit": "^9.5.11",
7173
"psalm/plugin-phpunit": "^0.18.0",
74+
"mezzio/mezzio-tooling": "^2.8",
7275
"roave/security-advisories": "dev-master",
7376
"vimeo/psalm": "^5.0"
7477
},

0 commit comments

Comments
 (0)