We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 59b4325 commit abd9497Copy full SHA for abd9497
.travis.yml
@@ -1,18 +1,29 @@
1
language: php
2
3
-os:
4
- - linux
5
- - windows
6
-
7
php:
8
- 5.3
9
- 5.4
10
- 5.5
11
- 5.6
+ - 7.0
+ - hhvm
+
+env:
12
+ global:
13
+ - setup=basic
14
-before_script:
15
+matrix:
16
+ include:
17
+ - php: 5.3
18
+ env: setup=lowest
19
20
+ env: setup=stable
21
22
+install:
23
- composer self-update
- - 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
27
- phpenv rehash
28
29
script:
0 commit comments