Skip to content

Commit 8b07047

Browse files
committed
run a Travis build with the lowest possible deps
1 parent d854530 commit 8b07047

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.travis.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
language: php
22

3+
env:
4+
global:
5+
- deps=""
6+
37
php:
48
- 5.3
59
- 5.4
@@ -11,11 +15,15 @@ php:
1115

1216
matrix:
1317
fast_finish: true
18+
include:
19+
- php: 5.3
20+
env: deps="low"
1421
allow_failures:
1522
- php: hhvm-nightly
1623

1724
install:
18-
- composer install
25+
- if [ "$deps" = "low" ]; then composer update --prefer-lowest --prefer-stable; fi
26+
- if [ "$deps" = "" ]; then composer install; fi
1927

2028
script:
2129
- phpunit --coverage-clover=coverage.clover

0 commit comments

Comments
 (0)