22 lines
300 B
YAML
22 lines
300 B
YAML
|
language: php
|
||
|
php:
|
||
|
- 5.3
|
||
|
- 5.4
|
||
|
- 5.5
|
||
|
- 5.6
|
||
|
- 7.0
|
||
|
- hhvm
|
||
|
|
||
|
notifications:
|
||
|
email: false
|
||
|
irc: "irc.freenode.org#fluent-php"
|
||
|
|
||
|
install: travis_retry composer install --no-interaction --prefer-source
|
||
|
|
||
|
script:
|
||
|
- vendor/bin/phpunit --coverage-text
|
||
|
|
||
|
matrix:
|
||
|
allow_failures:
|
||
|
- php: hhvm
|