-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
59 lines (45 loc) · 1.52 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
##
## Utilitaires
## ==================================================
##
install: ## Installe la base du projet (composer et yarn)
install: vendor
git-pre-push: ## Execute les commandes nécessaires avant un push sur GIT
git-pre-push:
make security
make php_cs
make twig_cs
.PHONY: install git-pre-push
##
## Gestion des dépendances du projet
## ==================================================
##
composer.lock: composer.json
composer update --lock --no-scripts --no-interaction
vendor: ## Installe les vendors
vendor: composer.json
composer install
##
## Gestion de la qualité
## ==================================================
##
security: ## Vérifie la sécurité des dépendances (https://security.sensiolabs.org/)
security: vendor
./vendor/bin/security-checker security:check
php_cs: ## Applique les règles PHP CS Fixer au projet
php_cs: vendor
./vendor/bin/php-cs-fixer fix --verbose
php_cs_dry_run: ## Lance un contrôle sur le respect des règles du projet
php_cs_dry_run: vendor
./vendor/bin/php-cs-fixer fix --verbose --dry-run
twig_cs: ## Lance les contrôles qualité sur les templates TWIG
twig_cs: vendor
./vendor/bin/twigcs lint src/Resources/views
#test: ## Lance les tests PHPUnit
#test:
# ./vendor/bin/phpunit --coverage-text --coverage-html ./coverage
.PHONY: security php_cs php_cs_dry_run twig_cs
.DEFAULT_GOAL := help
help:
@grep -E '(^[a-zA-Z_-]+:.*?##.*$$)|(^##)' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[32m%-30s\033[0m %s\n", $$1, $$2}' | sed -e 's/\[32m##/[33m/'
.PHONY: help