forked from rollerworks/PasswordStrengthBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
38 lines (31 loc) · 826 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
language: php
php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0
- hhvm
matrix:
include:
- php: 5.3
env: DEPENDENCIES='low'
- php: 5.6
env: DEPENDENCIES='dev'
allow_failures:
- php: 7.0
- env: DEPENDENCIES='dev'
fast_finish: true
sudo: false
cache:
directories:
- $HOME/.composer/cache
#before_install:
# - composer selfupdate
install:
- export COMPOSER_ROOT_VERSION=dev-master
- if [ "$DEPENDENCIES" == "dev" ]; then perl -pi -e 's/^}$/,"minimum-stability":"dev"}/' composer.json; fi;
- if [ "$DEPENDENCIES" != "low" ]; then travis_retry composer update; fi;
- if [ "$DEPENDENCIES" == "low" ]; then travis_retry composer update --prefer-lowest; fi;
script:
- vendor/bin/phpunit --configuration phpunit.xml.dist