| 12345678910111213141516171819202122 |
- language: php
- php:
- - 5.3
- - 5.4
- - 5.5
- - 5.6
- - hhvm
- - hhvm-nightly
- script: phpunit --coverage-clover build/logs/clover.xml
- after_script:
- - composer require satooshi/php-coveralls:dev-master
- - php vendor/bin/coveralls -v
- notifications:
- email:
- recipients:
- - jeroendedauw@gmail.com
- on_success: change
- on_failure: always
|