Skip to content

Commit cc8cf7a

Browse files
authored
Merge pull request #47 from Kekos/support-php-8
Support for PHP 8
2 parents f67bff7 + 3f07752 commit cc8cf7a

File tree

5 files changed

+988
-396
lines changed

5 files changed

+988
-396
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
/vendor/
2+
.phpunit.result.cache

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
}
1313
],
1414
"require": {
15-
"php": "^7.0",
15+
"php": "^7.0 || ~8.0",
1616
"psr/http-message": "^1.0"
1717
},
1818
"require-dev": {
1919
"guzzlehttp/psr7": "^1.3",
20-
"phpunit/phpunit": "^6.0",
20+
"phpunit/phpunit": "^9.0",
2121
"squizlabs/php_codesniffer": "^3.3"
2222
},
2323
"autoload": {
@@ -33,7 +33,7 @@
3333
"config": {
3434
"sort-packages": true,
3535
"platform": {
36-
"php": "7.0"
36+
"php": "8.0"
3737
}
3838
},
3939
"scripts": {

0 commit comments

Comments
 (0)