We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1876062 commit ea6edf9Copy full SHA for ea6edf9
.travis.yml
@@ -10,11 +10,19 @@ php:
10
- 7.0
11
- 7.1
12
- 7.2
13
+ - 7.3
14
15
matrix:
16
include:
17
- php: 7.0
18
env: COVERAGE=1
19
+ - php: 5.3
20
+ env: COMPOSER_MEMORY_LIMIT=2G
21
+ exclude:
22
+ - php: 7.0
23
24
+ allow_failures:
25
+ - php: 7.3
26
27
cache:
28
directories:
@@ -32,7 +40,7 @@ before_install:
32
40
33
41
before_script:
34
42
## 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
36
44
## Composer
37
45
- composer self-update
38
46
- travis_wait composer install --prefer-source
0 commit comments