1language: php
2
3sudo: false
4
5install:
6  - travis_retry composer install --no-interaction --prefer-source
7
8script: ./vendor/bin/phpunit --configuration ./build/travis-ci.xml
9
10php:
11  - 5.3.3
12  - 5.3
13  - 5.4
14  - 5.5
15  - 5.6
16  - hhvm
17
18notifications:
19  email: false
20  webhooks:
21    urls:
22      - https://webhooks.gitter.im/e/6668f52f3dd4e3f81960
23    on_success: always
24    on_failure: always
25    on_start: false
26