install, then update

This appears to be a problem with composer update (solver)
This commit is contained in:
Bruce Weirdan 2019-02-09 09:51:59 +02:00
parent 854918db89
commit 2d8f6443d5
No known key found for this signature in database
GPG Key ID: CFC3AAB181751B0D
2 changed files with 3 additions and 2 deletions

View File

@ -5,6 +5,7 @@ before_install:
- phpenv config-rm xdebug.ini || true
install:
- composer install
- if [[ "$DEPS" = 'high' ]]; then travis_retry composer $DEFAULT_COMPOSER_FLAGS update; fi
- if [[ "$DEPS" = 'low' ]]; then travis_retry composer $DEFAULT_COMPOSER_FLAGS --prefer-lowest --prefer-stable update; fi
- if [[ "$DEPS" = 'stable' ]]; then travis_retry composer $DEFAULT_COMPOSER_FLAGS --prefer-stable update; fi

View File

@ -37,11 +37,11 @@
"check": [
"@cs-check",
"@analyze",
"@test"
"@test"
],
"analyze": "psalm",
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "codecept run -v"
"test": "codecept run -v"
}
}