Skip to content

Commit abd9497

Browse files
committed
Add php 7/hhvm, add non-interactive to install, test lowest
1 parent 59b4325 commit abd9497

File tree

1 file changed

+17
-6
lines changed

1 file changed

+17
-6
lines changed

.travis.yml

+17-6
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,29 @@
11
language: php
22

3-
os:
4-
- linux
5-
- windows
6-
73
php:
84
- 5.3
95
- 5.4
106
- 5.5
117
- 5.6
8+
- 7.0
9+
- hhvm
10+
11+
env:
12+
global:
13+
- setup=basic
1214

13-
before_script:
15+
matrix:
16+
include:
17+
- php: 5.3
18+
env: setup=lowest
19+
- php: 5.3
20+
env: setup=stable
21+
22+
install:
1423
- composer self-update
15-
- composer install
24+
- if [[ $setup = 'basic' ]]; then composer install --no-interaction; fi
25+
- if [[ $setup = 'stable' ]]; then composer update --no-interaction --prefer-stable; fi
26+
- if [[ $setup = 'lowest' ]]; then composer update --no-interaction --prefer-lowest --prefer-stable; fi
1627
- phpenv rehash
1728

1829
script:

0 commit comments

Comments
 (0)