Skip to content

Commit 257504f

Browse files
committed
PHPUnit update
1 parent dce1ae5 commit 257504f

File tree

4 files changed

+3549
-1073
lines changed

4 files changed

+3549
-1073
lines changed

.travis.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
language: php
22

33
php:
4-
- 7.1
5-
- 7.2
6-
- 7.3
4+
- "7.1"
5+
- "7.2"
6+
- "7.3"
77

88
install:
99
- curl -s http://getcomposer.org/installer | php
1010
- php composer.phar install --dev --no-interaction
1111

1212
script:
13-
- mkdir -p build/logs
14-
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
13+
- mkdir -p build
14+
- vendor/bin/phpunit
1515

1616
after_success:
17-
- travis_retry php vendor/bin/php-coveralls
17+
- travis_retry php vendor/bin/php-coveralls --coverage_clover build/cov.xml --json_path build/coverage.json

composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,12 @@
2222
"guzzlehttp/guzzle": "^6.3"
2323
},
2424
"require-dev": {
25+
"mihaeu/test-generator": "^1.3",
2526
"php-coveralls/php-coveralls": "^2.1",
2627
"phpunit/php-code-coverage": "^6.1",
27-
"phpunit/phpunit": "^7.0"
28+
"phpunit/phpunit": "^7.0",
29+
"phpdocumentor/phpdocumentor": "2.*",
30+
"sebastian/phpcpd": "2.*"
2831
},
2932
"suggest": {
3033
"ext-curl": "Faster HTTP requests"

0 commit comments

Comments
 (0)