Skip to content

Fix: Validation fails for composer.json #103

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

Merged
merged 3 commits into from
May 25, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ workflows:
php-docker-template: &php-docker-template
steps:
- checkout
- run:
name: validate composer.json
command: composer validate
- run:
name: install current dependencies
command: composer install --no-progress
Expand Down Expand Up @@ -67,8 +70,11 @@ jobs:
sudo php /tmp/composer-setup.php --install-dir=/usr/local/bin --filename=composer
- checkout
- run:
name: update dependencies # the dependencies in composer.lock don't work with 5.5
command: composer update --no-progress
name: validate composer.json
command: composer validate
- run:
name: install current dependencies
command: composer install --no-progress
- run:
name: run tests
command: vendor/bin/phpunit --log-junit ~/phpunit/junit.xml --coverage-text tests
Expand Down
Loading