Add test with lowest PHPUnit version to Travis matrix
[kohana-image.git] / .travis.yml
blobb25679894a76db02318e7dbacd7cb971bbb8c59e
1 language: php
3 php:
4   - 5.3
5   - 5.4
6   - 5.5
7   - 5.6
8   - 7.0
9   - hhvm
11 matrix:
12   include:
13     - php: 5.3
14       env: 'COMPOSER_PHPUNIT="lowest"'
16 before_script:
17   - composer install --prefer-dist
18   - if [ "$COMPOSER_PHPUNIT" = "lowest" ]; then composer update --prefer-lowest --with-dependencies phpunit/phpunit; fi;
19   - vendor/bin/koharness
21 script:
22   - cd /tmp/koharness && ./vendor/bin/phpunit --bootstrap=modules/unittest/bootstrap.php modules/unittest/tests.php
24 notifications:
25   email: false