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 c98d8b7 + bbbdcd5 commit 87f4717Copy full SHA for 87f4717
.travis.yml
@@ -1,22 +1,28 @@
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.0
9
- 7.1
10
- - nightly
11
- - hhvm
+ - nightly # ignore errors, see below
+ - hhvm # ignore errors, see below
12
+
13
+# lock distro so new future defaults will not break the build
14
+dist: trusty
15
16
matrix:
17
+ include:
18
+ - php: 5.3
19
+ dist: precise
20
allow_failures:
21
- php: nightly
22
- php: hhvm
23
24
install:
- - composer install --prefer-source
25
+ - composer install --no-interaction
26
27
script:
28
- vendor/bin/phpunit --coverage-text
0 commit comments