Skip to content

Commit 1e4aada

Browse files
authored
Merge pull request #12 from boesing/feature/php81
PHP 8.1 support
2 parents 8d2367c + 1f82d6a commit 1e4aada

File tree

3 files changed

+12
-9
lines changed

3 files changed

+12
-9
lines changed

.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+
}

composer.json

+3-6
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@
2828
}
2929
},
3030
"require": {
31-
"php": "^7.3 || ~8.0.0",
32-
"laminas/laminas-zendframework-bridge": "^1.0",
31+
"php": "^7.3 || ~8.0.0 || ~8.1.0",
3332
"mezzio/mezzio-authentication": "^1.0",
3433
"psr/container": "^1.0",
3534
"psr/http-message": "^1.0.1",
@@ -42,7 +41,8 @@
4241
"phpunit/phpunit": "^9.3"
4342
},
4443
"conflict": {
45-
"container-interop/container-interop": "<1.2.0"
44+
"container-interop/container-interop": "<1.2.0",
45+
"zendframework/zend-expressive-authorization": "*"
4646
},
4747
"suggest": {
4848
"mezzio/mezzio-authorization-acl": "^1.0; provides a laminas-permissions-acl-backed adapter",
@@ -67,8 +67,5 @@
6767
"cs-fix": "phpcbf",
6868
"test": "phpunit --colors=always",
6969
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
70-
},
71-
"replace": {
72-
"zendframework/zend-expressive-authorization": "^1.0.1"
7370
}
7471
}

composer.lock

+4-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)