Skip to content

Commit

Permalink
Use prefer-dist over prefer-source in Travis config
Browse files Browse the repository at this point in the history
  • Loading branch information
nochso committed Dec 3, 2016
1 parent 1572047 commit 8dd5bf2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ php:
- 7.0
- hhvm
install:
- composer install --no-interaction --prefer-source -o
- composer install --no-interaction --prefer-dist -o
matrix:
include:
- php: 5.6
Expand All @@ -17,6 +17,6 @@ matrix:
- php: 7
env: dependencies=highest
before_script:
- if [ -z "$dependencies" ]; then composer install; fi;
- if [ "$dependencies" = "lowest" ]; then composer update --prefer-lowest -n; fi;
- if [ "$dependencies" = "highest" ]; then composer update -n; fi;
- if [ -z "$dependencies" ]; then composer install --prefer-dist; fi;
- if [ "$dependencies" = "lowest" ]; then composer update --prefer-dist --prefer-lowest -n; fi;
- if [ "$dependencies" = "highest" ]; then composer update --prefer-dist -n; fi;

0 comments on commit 8dd5bf2

Please sign in to comment.