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
14script:
15    - ./bin/phpunit
16    - ./bin/sabre-cs-fixer fix . --dry-run --diff
17
18before_script: composer install --dev
19