-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
91 lines (76 loc) · 2.56 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
SHELL=bash
SOURCE_DIR = $(shell pwd)
BIN_DIR = ${SOURCE_DIR}/bin
COMPOSER = composer
_CYAN=\033[36m
_GREEN=\033[32m
_END=\033[0m
define printSection
@printf "${_CYAN}\n══════════════════════════════════════════════════\n${_END}"
@printf "${_CYAN} $1 ${_END}"
@printf "${_CYAN}\n══════════════════════════════════════════════════\n${_END}"
endef
# _ _ _
# | | | | | |
# | |_| | ___| |_ __
# | _ |/ _ \ | '_ \
# | | | | __/ | |_) |
# \_| |_/\___|_| .__/
# | |
# |_|
.PHONY: help
help: ## Displays the list of commands
$(call printSection,HELP)
@grep -E '(^[a-zA-Z_-]+:.*?##.*$$)|(^##)' $(MAKEFILE_LIST) \
| sort \
| awk 'BEGIN {FS = ":.*?## "}; {printf "${_GREEN}%-20s${_END} %s\n", $$1, $$2}' \
| sed -e 's/##//'
# _____
# / __ \
# | / \/ ___ _ __ ___ _ __ ___ ___ ___ _ __
# | | / _ \| '_ ` _ \| '_ \ / _ \/ __|/ _ \ '__|
# | \__/\ (_) | | | | | | |_) | (_) \__ \ __/ |
# \____/\___/|_| |_| |_| .__/ \___/|___/\___|_|
# | |
# |_|
.PHONY: install
install: clean-vendor install-vendor ## Install the project
.PHONY: clean-vendor
clean-vendor: ## Remove composer dependencies
$(call printSection,CLEAN VENDOR)
rm -rf ${SOURCE_DIR}/vendor
.PHONY: install-vendor
install-vendor: ${SOURCE_DIR}/vendor/composer/installed.json ## Install composer dependencies
${SOURCE_DIR}/vendor/composer/installed.json:
$(call printSection,INSTALL VENDOR)
$(COMPOSER) --no-interaction install --ansi --no-progress --prefer-dist
# _____ _ _ _
# | _ | | (_) |
# | | | |_ _ __ _| |_| |_ _ _
# | | | | | | |/ _` | | | __| | | |
# \ \/' / |_| | (_| | | | |_| |_| |
# \_/\_\\__,_|\__,_|_|_|\__|\__, |
# __/ |
# |___/
.PHONY: cs-fix
cs-fix: ## Checks if code style is compliant
$(call printSection,PHP-CS-FIXER)
${BIN_DIR}/php-cs-fixer fix
.PHONY: rector
rector: ## Checks if the quality of the code is compliant
$(call printSection,RECTOR)
${BIN_DIR}/rector process --dry-run
.PHONY: phpstan
phpstan: ## Check if the data types are compliant
$(call printSection,PHPSTAN)
${BIN_DIR}/phpstan --memory-limit=1G analyse
# _____ _
# |_ _| | |
# | | ___ ___| |_
# | |/ _ \/ __| __|
# | | __/\__ \ |_
# \_/\___||___/\__|
.PHONY: test
test: ## Run unit tests
$(call printSection,TEST phpunit)
${BIN_DIR}/phpunit