Added PHP 7.3 support for travis (#1495)

* Added PHP 7.3 support for travis
* mark php 7.3 as failable
This commit is contained in:
Christopher ARZUR 2018-11-16 23:35:57 +00:00 committed by troosan
parent 18760620b3
commit ea6edf95cc
1 changed files with 9 additions and 1 deletions

View File

@ -10,11 +10,19 @@ php:
- 7.0
- 7.1
- 7.2
- 7.3
matrix:
include:
- php: 7.0
env: COVERAGE=1
- php: 5.3
env: COMPOSER_MEMORY_LIMIT=2G
exclude:
- php: 7.0
- php: 5.3
allow_failures:
- php: 7.3
cache:
directories:
@ -32,7 +40,7 @@ before_install:
before_script:
## Deactivate xdebug if we don't do code coverage
- if [ -z "$COVERAGE" ]; then phpenv config-rm xdebug.ini ; fi
- if [ -z "$COVERAGE" ]; then phpenv config-rm xdebug.ini || echo "xdebug not available" ; fi
## Composer
- composer self-update
- travis_wait composer install --prefer-source