Skip to content

Commit ea6edf9

Browse files
arzurchristroosan
authored andcommitted
Added PHP 7.3 support for travis (#1495)
* Added PHP 7.3 support for travis * mark php 7.3 as failable
1 parent 1876062 commit ea6edf9

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.travis.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,19 @@ php:
1010
- 7.0
1111
- 7.1
1212
- 7.2
13+
- 7.3
1314

1415
matrix:
1516
include:
1617
- php: 7.0
1718
env: COVERAGE=1
19+
- php: 5.3
20+
env: COMPOSER_MEMORY_LIMIT=2G
21+
exclude:
22+
- php: 7.0
23+
- php: 5.3
24+
allow_failures:
25+
- php: 7.3
1826

1927
cache:
2028
directories:
@@ -32,7 +40,7 @@ before_install:
3240

3341
before_script:
3442
## Deactivate xdebug if we don't do code coverage
35-
- if [ -z "$COVERAGE" ]; then phpenv config-rm xdebug.ini ; fi
43+
- if [ -z "$COVERAGE" ]; then phpenv config-rm xdebug.ini || echo "xdebug not available" ; fi
3644
## Composer
3745
- composer self-update
3846
- travis_wait composer install --prefer-source

0 commit comments

Comments
 (0)