We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cf51c8 commit c1f2ceaCopy full SHA for c1f2cea
.travis.yml
@@ -1,29 +1,26 @@
1
language: php
2
3
-php:
4
-# - 5.3 # requires old distro, see below
5
- - 5.4
6
- - 5.5
7
- - 5.6
8
- - 7.0
9
- - 7.1
10
- - 7.2
11
- - hhvm # ignore errors, see below
12
-
13
# lock distro so future defaults will not break the build
14
dist: trusty
15
16
-matrix:
+jobs:
17
include:
18
- php: 5.3
19
dist: precise
+ - php: 5.4
+ - php: 5.5
+ - php: 5.6
+ - php: 7.0
+ - php: 7.1
+ - php: 7.2
+ - php: 7.3
+ - php: 7.4
+ - php: hhvm-3.18
20
allow_failures:
21
- - php: hhvm
22
23
-sudo: false
24
25
install:
26
- - composer install --no-interaction
+ - composer install
27
28
script:
29
- if [[ "$TRAVIS_PHP_VERSION" < "7.3" ]]; then vendor/bin/phpunit --coverage-text -c phpunit-legacy.xml.dist; fi
0 commit comments