Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Validate Composer config in CI #533

Merged
merged 1 commit into from Feb 10, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions .travis.yml
Expand Up @@ -25,9 +25,10 @@ cache:
directories:
- $HOME/.composer/cache

before_script:
install:
- yes '' | pecl install imagick
- travis_retry composer update ${COMPOSER_FLAGS} --no-interaction --prefer-dist
- composer validate --strict
- travis_retry composer update --no-interaction --prefer-dist

script:
- vendor/bin/php-cs-fixer --dry-run --config=./.php_cs.travis fix src/ tests/ || travis_terminate 1;
Expand Down