1language: php
2php:
3  - 5.3
4  - 5.4
5  - 5.5
6  - 5.6
7  - 7
8  - hhvm
9
10matrix:
11  allow_failures:
12    - php: hhvm
13
14script:
15  - phpunit --configuration tests/phpunit.xml
16  - ./bin/phpcs -p --standard=tests/phpcs/ruleset.xml lib/
17
18
19before_script: composer install
20