1234567891011121314151617181920212223242526272829 |
- language: php
- php:
- - 5.3.3
- - 5.3
- - 5.4
- - 5.5
- - 5.6
- - hhvm
- env:
- - INSTALL_PHP_INVOKER=0
- - INSTALL_PHP_INVOKER=1
- before_script:
- - sh -c "if [ '$INSTALL_PHP_INVOKER' = '1' ]; then composer require --dev --prefer-source phpunit/php-invoker:\>=1.1.0,\<1.2.0; else composer install --dev --prefer-source; fi"
- script: ./phpunit.php --configuration ./build/travis-ci.xml
- matrix:
- allow_failures:
- - php: hhvm
- notifications:
- email: false
- irc:
- channels:
- - "irc.freenode.org#phpunit"
- use_notice: true
|