Skip to content

Commit 425272c

Browse files
committed
Use matrix for travis
1 parent 9e2dfc6 commit 425272c

File tree

1 file changed

+15
-10
lines changed

1 file changed

+15
-10
lines changed

.travis.yml

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,20 @@
11
language: php
2-
32
sudo: false
43

5-
php:
6-
- 5.4
7-
- 5.5
8-
- 5.6
9-
- 7.0
10-
- 7.1
11-
- nightly
4+
matrix:
5+
fast_finish: true
6+
include:
7+
- php: "5.4"
8+
- php: "5.5"
9+
- php: "5.6"
10+
- php: "7.0"
11+
- php: "7.1"
12+
- php: "nightly"
13+
allow_failures:
14+
- php: "nightly"
1215

13-
before_script:
16+
install:
1417
- composer self-update
15-
- composer install --no-interaction --prefer-source --dev
18+
- composer install --no-interaction --prefer-source --no-suggest
19+
20+
script: vendor/bin/phpunit

0 commit comments

Comments
 (0)