Skip to content

Commit 1731e2e

Browse files
authored
Merge pull request #9 from pascalheidmann/3.2.x-php81
Add compatibility with PHP 8.1
2 parents 25f8c55 + 0293eca commit 1731e2e

8 files changed

+542
-476
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@
22
/coveralls-upload.json
33
/phpunit.xml
44
/vendor/
5+
.phpcs-cache
6+
.phpunit.result.cache

.laminas-ci.json

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

.phpcs-cache

-1
This file was deleted.

.phpunit.result.cache

-1
This file was deleted.

composer.json

+7-6
Original file line numberDiff line numberDiff line change
@@ -28,19 +28,20 @@
2828
}
2929
},
3030
"require": {
31-
"php": "^7.3 || ~8.0.0",
32-
"fig/http-message-util": "^1.1.2",
31+
"php": "^7.3 || ~8.0.0 || ~8.1.0",
32+
"fig/http-message-util": "^1.1.5",
3333
"laminas/laminas-psr7bridge": "^0.2.2 || ^1.0.0",
3434
"laminas/laminas-router": "^3.3.0",
3535
"laminas/laminas-zendframework-bridge": "^1.0",
3636
"mezzio/mezzio-router": "^3.2",
3737
"psr/http-message": "^1.0.1"
3838
},
3939
"require-dev": {
40-
"laminas/laminas-coding-standard": "~2.2.0",
41-
"laminas/laminas-i18n": "^2.7.4",
42-
"laminas/laminas-stratigility": "^3.0",
43-
"phpunit/phpunit": "^9.4.1"
40+
"laminas/laminas-coding-standard": "^2.3.0",
41+
"laminas/laminas-i18n": "~2.12",
42+
"laminas/laminas-stratigility": "^3.5",
43+
"phpspec/prophecy-phpunit": "^2.0",
44+
"phpunit/phpunit": "^9.5.10"
4445
},
4546
"autoload": {
4647
"psr-4": {

0 commit comments

Comments
 (0)