Skip to content

Commit ee10fe6

Browse files
authored
Merge pull request #32 from gsteel/PHP-8.2
Add support for PHP 8.2, remove support for PHP 7.4
2 parents a5bf8b9 + d483eaf commit ee10fe6

9 files changed

+117
-263
lines changed

.coveralls.yml

-2
This file was deleted.

.gitattributes

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/.coveralls.yml export-ignore
21
/.gitattributes export-ignore
32
/.github/ export-ignore
43
/.gitignore export-ignore
@@ -8,3 +7,7 @@
87
/phpcs.xml export-ignore
98
/phpunit.xml.dist export-ignore
109
/test/ export-ignore
10+
/psalm.xml export-ignore
11+
/psalm-baseline.xml export-ignore
12+
/renovate.json export-ignore
13+
/composer.lock export-ignore

composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"composer/package-versions-deprecated": true
2828
},
2929
"platform": {
30-
"php": "7.4.99"
30+
"php": "8.0.99"
3131
}
3232
},
3333
"extra": {
@@ -36,7 +36,7 @@
3636
}
3737
},
3838
"require": {
39-
"php": "^7.4 || ~8.0.0 || ~8.1.0",
39+
"php": "~8.0.0 || ~8.1.0 || ~8.2.0",
4040
"ext-json": "*",
4141
"fig/http-message-util": "^1.1.2",
4242
"psr/container": "^1.0 || ^2.0",
@@ -49,9 +49,9 @@
4949
},
5050
"require-dev": {
5151
"laminas/laminas-coding-standard": "~2.4.0",
52-
"phpunit/phpunit": "^9.5.11",
52+
"phpunit/phpunit": "^9.5.25",
5353
"psalm/plugin-phpunit": "^0.17.0",
54-
"vimeo/psalm": "^4.17"
54+
"vimeo/psalm": "^4.29"
5555
},
5656
"autoload": {
5757
"psr-4": {

0 commit comments

Comments
 (0)