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.
1 parent fa64326 commit 34e307dCopy full SHA for 34e307d
.travis.yml
@@ -1,18 +1,26 @@
1
language: php
2
3
-php:
4
- - 5.3
5
- - 5.4
6
- - 5.5
7
- - 5.6
8
- - 7.0
9
- - hhvm
+# lock distro so new future defaults will not break the build
+dist: trusty
10
11
-before_install:
12
- - composer self-update
+jobs:
+ include:
+ - php: 5.3
+ dist: precise
+ - php: 5.4
+ - php: 5.5
+ - php: 5.6
13
+ - php: 7.0
14
+ - php: 7.1
15
+ - php: 7.2
16
+ - php: 7.3
17
+ - php: 7.4
18
+ - php: hhvm-3.18
19
+ allow_failures:
20
21
22
install:
- - composer install --prefer-source
23
+ - composer install
24
25
script:
26
- vendor/bin/phpunit --coverage-text
0 commit comments