17 lines
170 B
YAML
17 lines
170 B
YAML
|
language: php
|
||
|
|
||
|
php:
|
||
|
- 5.5
|
||
|
- 5.6
|
||
|
- 7.0
|
||
|
- 7.1
|
||
|
- hhvm
|
||
|
|
||
|
matrix:
|
||
|
allow_failures:
|
||
|
- php: hhvm
|
||
|
|
||
|
before_script: composer install
|
||
|
|
||
|
script: phpunit --coverage-text
|