1language: php
2php:
3  - 5.4
4  - 5.5
5  - 5.6
6  - 7
7  - 7.1
8
9script:
10  - ./bin/phpunit --configuration tests/phpunit.xml.dist
11  - ./bin/sabre-cs-fixer fix lib/ --dry-run --diff
12
13before_script: composer install --dev
14
15