Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.

Commit eb3975c

Browse files
committed
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 5079ece commit eb3975c

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ notifications:
4141
before_install:
4242
- if [[ $TEST_COVERAGE != 'true' ]]; then phpenv config-rm xdebug.ini || return 0 ; fi
4343
- composer self-update
44-
- if [[ $TEST_COVERAGE == 'true' ]]; then composer require --dev --no-update satooshi/php-coveralls ; fi
44+
- if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry php vendor/bin/php-coveralls -v ; fi
4545

4646
install:
4747
- travis_retry composer install $COMPOSER_ARGS
@@ -57,4 +57,4 @@ after_success:
5757
- if [[ $DEPLOY_DOCS == "true" ]]; then echo "Preparing to build and deploy documentation" ; ./zf-mkdoc-theme/deploy.sh ; echo "Completed deploying documentation" ; fi
5858

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

composer.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@
5353
"cs-check": "phpcs",
5454
"cs-fix": "phpcbf",
5555
"test": "phpunit --colors=always",
56-
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml",
57-
"upload-coverage": "coveralls -v"
56+
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
5857
}
5958
}

0 commit comments

Comments
 (0)