Skip to content

Commit fadfd56

Browse files
authored
Merge pull request #22 from ghostwriter/feature/php-8.2-support
Feature: Support PHP 8.2
2 parents 96902ac + d41e7fa commit fadfd56

File tree

4 files changed

+173
-310
lines changed

4 files changed

+173
-310
lines changed

.laminas-ci.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
{
2-
}
2+
"ignore_php_platform_requirements": {
3+
"8.2": true
4+
}
5+
}

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,15 @@
1919
"config": {
2020
"sort-packages": true,
2121
"platform": {
22-
"php": "7.4.99"
22+
"php": "8.0.99"
2323
},
2424
"allow-plugins": {
2525
"dealerdirect/phpcodesniffer-composer-installer": true
2626
}
2727
},
2828
"extra": {},
2929
"require": {
30-
"php": "^7.4 || ~8.0.0 || ~8.1.0",
30+
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
3131
"ext-json": "*",
3232
"symfony/console": "^2.8 || ^3.0 || ^4.0 || ^5.0 || ^6.0"
3333
},

0 commit comments

Comments
 (0)