Files
barryvdh_ReflectionDocBlock/.travis.yml
T
2017-11-12 21:23:54 +01:00

28 lines
497 B
YAML

language: php
php:
- 7.0
- 7.1
- 7.2
cache:
directories:
- $HOME/.composer/cache
install:
- composer install --no-interaction
script:
- vendor/bin/phpunit --coverage-clover=coverage.clover -v
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
notifications:
irc: "irc.freenode.org#phpdocumentor"
email:
- [email protected]
- [email protected]
- [email protected]