Add test with lowest PHPUnit version to Travis matrix
[kohana.git] / .travis.yml
blobcd66d573e365801295a35be453ca3de340d486ae
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_install:
17   - "git submodule update --init --recursive"
19 before_script:
20   - "composer install --prefer-dist"
21   - if [ "$COMPOSER_PHPUNIT" = "lowest" ]; then composer update --prefer-lowest --with-dependencies phpunit/phpunit; fi;
23 script:
24   - vendor/bin/phing test
26 notifications:
27   irc:
28     channels:
29       - "irc.freenode.org#kohana"
30     template:
31       - "%{repository}/%{branch} (%{commit}) - %{author}: %{message}"
32       - "Build details: %{build_url}"
33   email: false