We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 6de52b6 + 8ee4fe9 commit ad45e03Copy full SHA for ad45e03
.travis.yml
@@ -1,24 +1,29 @@
1
language: php
2
3
php:
4
- - 5.3
+# - 5.3 # requires old distro, see below
5
- 5.4
6
- 5.5
7
- 5.6
8
- 7
9
- - hhvm
+ - hhvm # ignore errors, see below
10
11
+# lock distro so new future defaults will not break the build
12
+dist: trusty
13
+
14
+# also test lowest dependencies on PHP 7
15
matrix:
16
include:
17
- php: 5.3
- env:
- - DEPENDENCIES=lowest
18
+ dist: precise
19
- php: 7.0
20
env:
21
- DEPENDENCIES=lowest
22
allow_failures:
23
- php: hhvm
24
25
+sudo: false
26
27
install:
28
- composer install --no-interaction
29
- if [ "$DEPENDENCIES" = "lowest" ]; then composer update --prefer-lowest -n; fi
0 commit comments