Skip to content

Commit cfeb941

Browse files
Merge pull request #7 from eimkua1/php-8-support
Php 8 support
2 parents 09f8db1 + 15a803d commit cfeb941

24 files changed

+1199
-544
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,5 @@
22
/coveralls-upload.json
33
/phpunit.xml
44
/vendor/
5+
/.phpunit.result.cache
6+
/.phpcs-cache

composer.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626
}
2727
},
2828
"require": {
29-
"php": "^7.3",
30-
"laminas/laminas-eventmanager": "^2.6.3 || ^3.0.1",
29+
"php": "^7.3 || ~8.0.0",
30+
"laminas/laminas-eventmanager": "^3.2",
3131
"laminas/laminas-http": "^2.5.4",
3232
"laminas/laminas-modulemanager": "^2.7.2",
3333
"laminas/laminas-mvc": "^2.7.15 || ^3.0.2",
@@ -36,8 +36,9 @@
3636
"laminas/laminas-zendframework-bridge": "^1.0"
3737
},
3838
"require-dev": {
39-
"laminas/laminas-coding-standard": "~1.0.0",
40-
"phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.5"
39+
"laminas/laminas-coding-standard": "~2.3.0",
40+
"phpspec/prophecy-phpunit": "^2.0",
41+
"phpunit/phpunit": "^9.5"
4142
},
4243
"autoload": {
4344
"psr-4": {

0 commit comments

Comments
 (0)