-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile
executable file
·29 lines (20 loc) · 1.36 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
.PHONY: help
.DEFAULT_GOAL := help
$(VERBOSE).SILENT:
help: ## Print the help screen
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
composer-install: ## Install Composer dependencies
docker run --rm --interactive --tty --volume $(PWD):/app --user $(id -u):$(id -g) composer install --ignore-platform-reqs
composer-update: ## Update Composer dependencies
docker run --rm --interactive --tty --volume $(PWD):/app --user $(id -u):$(id -g) composer update --ignore-platform-reqs
test: ## Run PHPUnit for the unit tests
docker-compose run --rm --no-deps yin-middleware-php /bin/sh -c "cd /var/www && ./vendor/bin/phpunit $(if $(TEST),$(TEST),)"
phpstan: ## Run PHPStan to perform static analysis
docker-compose run --rm --no-deps yin-middleware-php /bin/sh -c "cd /var/www && ./vendor/bin/phpstan analyse --level 8 src tests"
cs: ## Run PHP CodeSniffer to detect issues with coding style
docker-compose run --rm --no-deps yin-middleware-php /var/www/vendor/bin/phpcs --standard=/var/www/phpcs.xml
cs-fix: ## Run PHPCBF to automatically fix issues with coding style
docker-compose run --rm --no-deps yin-middleware-php /var/www/vendor/bin/phpcbf --standard=/var/www/phpcs.xml
qa: test phpstan cs ## Test code quality
release: qa ## Release a new version of the library
./vendor/bin/releaser release