Skip to content

Commit 3684113

Browse files
committedJan 17, 2018
Updated to php-coveralls/php-coveralls
With version 2 package has been renamed from "satooshi/php-coveralls" to "php-coveralls/php-coveralls", and the script has been renamed from "coveralls" to "php-coveralls"
1 parent 48b0284 commit 3684113

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed
 

‎.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ cache:
1515
env:
1616
global:
1717
- COMPOSER_ARGS="--no-interaction"
18-
- COVERAGE_DEPS="satooshi/php-coveralls"
18+
- COVERAGE_DEPS="php-coveralls/php-coveralls"
1919
- TESTS_ZEND_FORM_ANNOTATION_SUPPORT=true
2020
- TESTS_ZEND_FORM_RECAPTCHA_SUPPORT=true
2121

@@ -78,7 +78,7 @@ script:
7878
- if [[ $CS_CHECK == 'true' ]]; then composer cs-check ; fi
7979

8080
after_script:
81-
- if [[ $TEST_COVERAGE == 'true' ]]; then composer upload-coverage ; fi
81+
- if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry php vendor/bin/php-coveralls -v ; fi
8282

8383
notifications:
8484
email: false

‎composer.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@
8282
"cs-check": "phpcs",
8383
"cs-fix": "phpcbf",
8484
"test": "phpunit --colors=always",
85-
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
86-
"upload-coverage": "coveralls -v"
85+
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
8786
}
8887
}

0 commit comments

Comments
 (0)
Please sign in to comment.