-
Notifications
You must be signed in to change notification settings - Fork 8
/
.travis.yml
50 lines (44 loc) · 869 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
39
40
41
42
43
44
45
46
47
48
49
50
language: php
matrix:
include:
- php: nightly
- php: hhvm
- php: 7.0
env:
- TEST_COVERAGE=true
- php: 7.0
env:
- DEPS=latest
- php: 7.0
env:
- DEPS=lowest
- php: 7.1
- php: 7.1
env:
- DEPS=latest
- php: 7.1
env:
- DEPS=lowest
- php: 5.6
- php: 5.6
env:
- DEPS=lowest
- php: 5.6
env:
- DEPS=latest
- php: 5.5
allow_failures:
- php: hhvm
- php: nightly
- php: 5.5
before_install:
- travis_retry composer self-update
install:
- if [[ $DEPS == 'latest' ]]; then travis_retry composer update; fi
- if [[ $DEPS == 'lowest' ]]; then travis_retry composer update --prefer-lowest --prefer-stable ; fi
- travis_retry composer install
script:
- phpunit --coverage-text
notifications:
email: