Skip to content

Commit 0fce147

Browse files
authored
Merge pull request #103 from localheinz/fix/validate
Fix: Validation fails for composer.json
2 parents 69e7340 + edb0649 commit 0fce147

File tree

2 files changed

+236
-359
lines changed

2 files changed

+236
-359
lines changed

.circleci/config.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ workflows:
1414
php-docker-template: &php-docker-template
1515
steps:
1616
- checkout
17+
- run:
18+
name: validate composer.json
19+
command: composer validate
1720
- run:
1821
name: install current dependencies
1922
command: composer install --no-progress
@@ -67,8 +70,11 @@ jobs:
6770
sudo php /tmp/composer-setup.php --install-dir=/usr/local/bin --filename=composer
6871
- checkout
6972
- run:
70-
name: update dependencies # the dependencies in composer.lock don't work with 5.5
71-
command: composer update --no-progress
73+
name: validate composer.json
74+
command: composer validate
75+
- run:
76+
name: install current dependencies
77+
command: composer install --no-progress
7278
- run:
7379
name: run tests
7480
command: vendor/bin/phpunit --log-junit ~/phpunit/junit.xml --coverage-text tests

0 commit comments

Comments
 (0)