We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6768ad6 commit c0f37c1Copy full SHA for c0f37c1
.travis.yml
@@ -3,15 +3,19 @@ language: php
3
php:
4
- 7.1
5
- 7.2
6
+ - 7.3
7
+
8
+cache:
9
+ directories:
10
+ - $HOME/.composer/cache
11
12
services:
13
- mysql
14
15
install:
- - composer update
- - composer require php-coveralls/php-coveralls --dev
16
+ - travis_retry composer install --no-interaction --prefer-dist
17
+ - travis_retry composer require --no-interaction --prefer-dist --dev php-coveralls/php-coveralls
18
19
script: vendor/bin/phpunit --verbose --coverage-clover build/logs/clover.xml
20
-after_script:
- - php vendor/bin/php-coveralls -v
21
+after_success: php vendor/bin/php-coveralls --verbose
0 commit comments