Skip to content

Commit 34e307d

Browse files
committed
Run tests on PHP 7.4 and simplify test matrix
1 parent fa64326 commit 34e307d

File tree

1 file changed

+18
-10
lines changed

1 file changed

+18
-10
lines changed

.travis.yml

Lines changed: 18 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,26 @@
11
language: php
22

3-
php:
4-
- 5.3
5-
- 5.4
6-
- 5.5
7-
- 5.6
8-
- 7.0
9-
- hhvm
3+
# lock distro so new future defaults will not break the build
4+
dist: trusty
105

11-
before_install:
12-
- composer self-update
6+
jobs:
7+
include:
8+
- php: 5.3
9+
dist: precise
10+
- php: 5.4
11+
- php: 5.5
12+
- 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+
- php: hhvm-3.18
1321

1422
install:
15-
- composer install --prefer-source
23+
- composer install
1624

1725
script:
1826
- vendor/bin/phpunit --coverage-text

0 commit comments

Comments
 (0)