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 a44aee8 commit fb60865Copy full SHA for fb60865
.travis.yml
@@ -18,9 +18,12 @@ matrix:
18
env: COVERAGE=1
19
- php: 5.3
20
env: COMPOSER_MEMORY_LIMIT=2G
21
+ - php: 7.3
22
+ env: DEPENDENCIES="--ignore-platform-reqs"
23
exclude:
- - php: 7.0
24
25
+ - php: 7.0
26
27
allow_failures:
28
- php: 7.3
29
@@ -43,7 +46,7 @@ before_script:
43
46
- if [ -z "$COVERAGE" ]; then phpenv config-rm xdebug.ini || echo "xdebug not available" ; fi
44
47
## Composer
45
48
- composer self-update
- - travis_wait composer install --prefer-source
49
+ - travis_wait composer install --prefer-source $(if [ -n "$DEPENDENCIES" ]; then echo $DEPENDENCIES; fi)
50
## PHPDocumentor
51
##- mkdir -p build/docs
52
- mkdir -p build/coverage
0 commit comments