Skip to content
This repository was archived by the owner on Feb 21, 2022. It is now read-only.

Commit ff2aea7

Browse files
committed
Build against PHP 7.2 with lowest dependencies
1 parent 88768ac commit ff2aea7

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.travis.yml

+10-5
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,20 @@ language: php
22

33
sudo: false
44

5-
php:
6-
- 7.0
7-
- 7.1
5+
matrix:
6+
include:
7+
- php: 7.0
8+
- php: 7.1
9+
- php: 7.2
10+
env: deps=low
11+
fast_finish: true
812

913
install:
10-
- composer update --prefer-source --no-interaction
14+
- phpenv config-rm xdebug.ini
15+
- if [[ $deps = low ]]; then composer update --prefer-lowest --prefer-stable; else composer install; fi
1116

1217
script:
13-
- vendor/bin/phpunit --coverage-text
18+
- phpdbg -qrr vendor/bin/phpunit --coverage-text
1419

1520
notifications:
1621
email: false

0 commit comments

Comments
 (0)