1language: php
2php:
3  - 5.4
4  - 5.5
5  - 5.6
6  - 7
7  - hhvm
8
9matrix:
10  fast_finish: true
11  allow_failures:
12      - php: 7
13
14sudo: false
15
16cache: vendor
17
18script:
19  - ./bin/phpunit --configuration tests/phpunit.xml.dist
20  - ./bin/sabre-cs-fixer fix . --dry-run --diff
21
22before_script: composer install
23