Security update for permissions_by_term
[yaffs-website] / vendor / behat / mink-extension / .travis.yml
1 language: php
2
3 sudo: false
4
5 cache:
6   directories:
7     - $HOME/.composer/cache/files
8
9 php:
10   - 5.3
11   - 5.4
12   - 5.5
13   - 5.6
14   - hhvm
15
16 matrix:
17   include:
18     - php: 5.5
19       env: SYMFONY_VERSION='2.3.*'
20     # Test against dev dependencies
21     - php: 5.6
22       env: DEPS=dev
23
24 before_install:
25   - composer self-update
26   - if [ "$SYMFONY_VERSION" != "" ]; then composer require --no-update symfony/symfony=$SYMFONY_VERSION; fi;
27   - if [ "$DEPS" = 'dev' ]; then perl -pi -e 's/^}$/,"minimum-stability":"dev"}/' composer.json; fi;
28
29 install:
30   - composer install --no-progress
31
32 before_script:
33   - export PATH=./vendor/bin:$PATH
34   - export PATH=./vendor/bin:$PATH
35
36 script:
37   - phpspec run -f pretty
38   - behat -fprogress --strict