Fix bug in style changes for the Use cases on the live site.
[yaffs-website] / vendor / behat / mink-browserkit-driver / .travis.yml
1 language: php
2
3 sudo: false
4
5 php: [5.3, 5.4, 5.5, 5.6, 7.0, hhvm]
6
7 matrix:
8   include:
9     # Test against LTS versions
10     - php: 5.5
11       env: SYMFONY_VERSION='2.3.*'
12     - php: 5.5
13       env: SYMFONY_VERSION='2.7.*'
14     - php: 5.6
15       env: SYMFONY_VERSION='2.8.*'
16     # Test against dev versions of dependencies
17     - php: 5.6
18       env: DEPENDENCIES='dev'
19
20 cache:
21   directories:
22     - $HOME/.composer/cache/files
23
24 before_install:
25   - if [ "$DEPENDENCIES" = "dev" ]; then perl -pi -e 's/^}$/,"minimum-stability":"dev"}/' composer.json; fi;
26   - sh -c 'if [ "$SYMFONY_VERSION" != "" ]; then composer require -n --no-update symfony/symfony=$SYMFONY_VERSION; fi;'
27
28 install:
29   - composer install -n
30
31 script: phpunit -v --coverage-clover=coverage.clover
32
33 after_script:
34   - wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover coverage.clover