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