Skip to content

Commit 1c9a2c9

Browse files
Merge pull request #15 from eimkua1/php-8-support
Php 8 support
2 parents 6037526 + 0f68d75 commit 1c9a2c9

13 files changed

+664
-269
lines changed

.gitignore

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

composer.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
}
2828
},
2929
"require": {
30-
"php": "^7.3",
30+
"php": "^7.3 || ~8.0.0",
3131
"ext-json": "*",
3232
"laminas/laminas-eventmanager": "^2.6.3 || ^3.0.1",
3333
"laminas/laminas-http": "^2.5.4",
@@ -38,7 +38,8 @@
3838
},
3939
"require-dev": {
4040
"laminas/laminas-coding-standard": "~2.2.0",
41-
"phpunit/phpunit": "^7.5.15"
41+
"phpspec/prophecy-phpunit": "^2.0",
42+
"phpunit/phpunit": "^9.3"
4243
},
4344
"autoload": {
4445
"psr-4": {

0 commit comments

Comments
 (0)