Skip to content
This repository was archived by the owner on Jan 31, 2020. It is now read-only.

Commit 56c610a

Browse files
committed
Update Travis CI configuration
- remove --prefer-stable flag - use update instead of install for latest deps - add --no-interaction flag to update latest deps - remove sude: false as no longer needed
1 parent c5426f8 commit 56c610a

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.travis.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
sudo: false
2-
31
language: php
42

53
cache:
@@ -52,8 +50,8 @@ before_install:
5250
- if [[ $DEPS == 'latest' ]]; then travis_retry composer require $COMPOSER_ARGS --no-update --dev $LATEST_DEPS_REQUIRE ; fi
5351

5452
install:
55-
- if [[ $DEPS == 'lowest' ]]; then travis_retry composer update $COMPOSER_ARGS --prefer-lowest --prefer-stable ; fi
56-
- if [[ $DEPS == 'latest' ]]; then travis_retry composer install ; fi
53+
- if [[ $DEPS == 'lowest' ]]; then travis_retry composer update $COMPOSER_ARGS --prefer-lowest ; fi
54+
- if [[ $DEPS == 'latest' ]]; then travis_retry composer update $COMPOSER_ARGS ; fi
5755
- if [[ $TEST_COVERAGE == 'true' ]]; then travis_retry composer require --dev $COMPOSER_ARGS $COVERAGE_DEPS ; fi
5856
- stty cols 120 && composer show
5957

0 commit comments

Comments
 (0)