Skip to content

Commit 4ae1605

Browse files
authored
Merge pull request #2 from Dgame/php-8
PHP 8
2 parents f143a93 + 75d1576 commit 4ae1605

File tree

5 files changed

+14
-2735
lines changed

5 files changed

+14
-2735
lines changed

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
.idea
22
vendor
33
/.phpunit.result.cache
4+
composer.lock

Diff for: composer.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@
1818
}
1919
],
2020
"require": {
21-
"php": "^7.0"
21+
"php": ">=7.1"
2222
},
2323
"require-dev": {
24-
"phpunit/phpunit": "^7.5",
25-
"phpstan/phpstan": "^0.11.2"
24+
"phpunit/phpunit": ">=8",
25+
"phpstan/phpstan": "^0.12"
2626
},
2727
"autoload": {
2828
"classmap": [
@@ -38,7 +38,7 @@
3838
"scripts": {
3939
"test": [
4040
"phpunit",
41-
"phpstan analyse src --level=7"
41+
"phpstan analyse src --level=8"
4242
],
4343
"coverage": [
4444
"phpunit --coverage-clover=coverage"

0 commit comments

Comments
 (0)