1language: php
2php:
3  - 5.5
4  - 5.6
5  - 7.0
6  - 7.1
7
8matrix:
9  fast_finish: true
10
11sudo: false
12
13cache:
14  directories:
15    - $HOME/.composer/cache
16
17before_install:
18  - phpenv config-rm xdebug.ini; true
19
20install:
21  - composer install
22
23script:
24  - ./bin/phpunit --configuration tests/phpunit.xml.dist
25  - ./bin/sabre-cs-fixer fix . --dry-run --diff
26
27