.travis.yml
language: php
sudo: false
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
before_script:
- composer self-update
install:
- composer install --prefer-source --no-interaction
script:
- composer test
after_script:
- if [[ "$TRAVIS_PHP_VERSION" == '5.3' ]]; then php vendor/bin/test-reporter ; fi
matrix:
fast_finish: true
addons:
code_climate:
repo_token: $CODECLIMATE_REPO_TOKEN