We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c337854 commit d959b69Copy full SHA for d959b69
Makefile
@@ -19,9 +19,9 @@ build: ## Build image
19
install: ## Install dependencies
20
$(DC_RUN_PHP) env XDEBUG_MODE=off composer install
21
update: ## Update dependencies
22
- $(DC_RUN_PHP) env XDEBUG_MODE=off composer update --no-plugins
+ $(DC_RUN_PHP) env XDEBUG_MODE=off composer update --no-interaction
23
update-lowest: ## Update dependencies to lowest supported versions
24
- $(DC_RUN_PHP) env XDEBUG_MODE=off composer update --no-plugins --prefer-lowest
+ $(DC_RUN_PHP) env XDEBUG_MODE=off composer update --no-interaction --prefer-lowest
25
test: ## Run all tests
26
$(DC_RUN_PHP) env XDEBUG_MODE=off vendor/bin/phpunit --testdox --colors=always
27
test-unit: ## Run unit tests
0 commit comments