-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
48 lines (39 loc) · 1.57 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
.DEFAULT_GOAL := help
.PHONY: $(filter-out vendor, $(MAKECMDGOALS))
help: ## Show this help message
@printf "\033[33mUsage:\033[0m\n make [target] [arg=\"val\"...]\n\n\033[33mTargets:\033[0m\n"
@grep -E '^[-a-zA-Z0-9_\.\/]+:.*?## .*$$' $(firstword $(MAKEFILE_LIST)) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf " \033[32m%-15s\033[0m %s\n", $$1, $$2}'
bench: vendor ## Run benchmarks
@vendor/bin/phpbench run tests/Benchmark --report=aggregate
cover: vendor ## Generate test coverage report(s)
@XDEBUG_MODE=coverage vendor/bin/pest \
--coverage \
--min=50 \
--coverage-xml=.coverage \
--log-junit=".coverage/junit.xml"
infect: vendor ## Run mutation tests
@XDEBUG_MODE=coverage vendor/bin/infection --threads=4 --show-mutations
lock: vendor ## Generate a new lock file
@composer update --lock
stan: vendor ## Analyze the source code and manifest document(s)
@composer validate
@vendor/bin/patrol
@composer normalize --dry-run
@vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php --ansi -vvv --dry-run
@vendor/bin/phpinsights \
--no-interaction \
--min-quality=90 \
--min-complexity=90 \
--min-architecture=90 \
--min-style=90
@XDEBUG_MODE=coverage vendor/bin/pest \
--coverage \
--min=50
style: vendor ## Format the source code and other documents in the repository
@composer normalize
@vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.php --ansi -vvv
test: vendor ## Run tests
@vendor/bin/pest --configuration=phpunit.xml --color=always
vendor: composer.* ## Install third-party dependencies
@composer install --optimize-autoloader
@touch vendor/