Skip to content

Commit 4d6e1c4

Browse files
authored
Merge pull request #24 from gsteel/PHP-8.2
Add support for PHP 8.2, remove support for PHP 7.4
2 parents cf6f1c5 + 3251a7e commit 4d6e1c4

5 files changed

+93
-221
lines changed

.gitattributes

+4
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,9 @@
44
/docs/ export-ignore
55
/mkdocs.yml export-ignore
66
/phpcs.xml export-ignore
7+
/psalm.xml export-ignore
8+
/psalm-baseline.xml export-ignore
79
/phpunit.xml.dist export-ignore
810
/test/ export-ignore
11+
/renovate.json export-ignore
12+
/composer.lock export-ignore

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"dealerdirect/phpcodesniffer-composer-installer": true
2424
},
2525
"platform": {
26-
"php": "7.4.99"
26+
"php": "8.0.99"
2727
},
2828
"sort-packages": true
2929
},
@@ -33,17 +33,17 @@
3333
}
3434
},
3535
"require": {
36-
"php": "^7.4 || ~8.0.0 || ~8.1.0",
36+
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
3737
"mezzio/mezzio-authentication": "^1.0",
3838
"psr/container": "^1.0 || ^2.0",
3939
"psr/http-factory": "^1.0",
4040
"psr/http-message": "^1.0.1"
4141
},
4242
"require-dev": {
4343
"laminas/laminas-coding-standard": "~2.4.0",
44-
"phpunit/phpunit": "^9.5.11",
44+
"phpunit/phpunit": "^9.5.25",
4545
"psalm/plugin-phpunit": "^0.17.0",
46-
"vimeo/psalm": "^4.17.0"
46+
"vimeo/psalm": "^4.29"
4747
},
4848
"autoload": {
4949
"psr-4": {

0 commit comments

Comments
 (0)