Skip to content

Commit

Permalink
Run Travis with Symfony 4
Browse files Browse the repository at this point in the history
  • Loading branch information
dunglas committed Nov 19, 2017
1 parent 14d8622 commit 6112c8b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .travis.yml
Expand Up @@ -19,6 +19,8 @@ matrix:
env: coverage=1 lint=1
- php: '7.2'
env: deps='low'
- php: '7.2'
env: deps='beta'
- php: '7.2'
env: SYMFONY_DEPRECATIONS_HELPER=0
allow_failures:
Expand All @@ -37,7 +39,8 @@ before_install:

install:
- if [[ $coverage = 1 ]]; then composer require --dev --no-update 'phpunit/php-code-coverage:^5.2.2'; fi
- if [[ ! $deps ]]; then composer update --prefer-dist --no-progress --no-suggest --ansi; fi
- if [[ $deps = 'beta' ]]; then composer config minimum-stability beta; fi
- if [[ $deps != 'low' ]]; then composer update --prefer-dist --no-progress --no-suggest --ansi; fi
- if [[ $deps = 'low' ]]; then composer update --prefer-dist --no-progress --no-suggest --prefer-stable --prefer-lowest --ansi; fi

script:
Expand Down

0 comments on commit 6112c8b

Please sign in to comment.