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 36ca90b commit 1017897Copy full SHA for 1017897
bundles/best_practices.rst
@@ -217,8 +217,8 @@ test latest beta release. Here is a recommended configuration file (``.travis.ym
217
218
before_install:
219
- if [[ $COVERAGE != true ]]; then phpenv config-rm xdebug.ini || true; fi
220
- - if [[ -v $STABILITY ]]; then composer config minimum-stability $STABILITY; fi;
221
- - if [[ -v $DEPENDENCIES ]]; then composer require --no-update $DEPENDENCIES; fi;
+ - if ! [ -z "$STABILITY" ]; then composer config minimum-stability ${STABILITY}; fi;
+ - if ! [ -v $DEPENDENCIES ]; then composer require --no-update ${DEPENDENCIES}; fi;
222
223
install:
224
# To be removed when this issue will be resolved: https://github.com/composer/composer/issues/5355
0 commit comments