Skip to content

Commit 67c9a7b

Browse files
committed
Merge pull request #1
* pr-1: Refactor unit tests. Refactor to be compatible with PHPUnit 8 Add .phpunit.result.cache to .gitignore Update dependencies. remove deprecated classes
2 parents b13b8f5 + f6e8e03 commit 67c9a7b

31 files changed

+497
-1139
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ vendor
77
# ignore test/coverage reports
88
test/coverage
99

10+
# ignore phpunit cache
11+
.phpunit.result.cache
12+
1013
# Ignore IDEs
1114
.idea
1215
.atom

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
"optimize-autoloader": false
1515
},
1616
"require": {
17-
"php": ">=7.1",
18-
"phpunit/phpunit": "^5.7"
17+
"php": ">=7.2",
18+
"phpunit/phpunit": "^8.0"
1919
},
2020
"autoload": {
2121
"psr-4": {

0 commit comments

Comments
 (0)