-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
51 lines (38 loc) · 792 Bytes
/
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
twig:
php bin/console lint:twig templates
vendor/bin/twigcs templates
phpmd:
vendor/bin/phpmd src/ text .phpmd.xml
insights:
vendor/bin/phpinsights --no-interaction
phpcpd:
vendor/bin/phpcpd src/
phpstan:
php vendor/bin/phpstan analyse -c phpstan.neon src --no-progress
fix:
vendor/bin/php-cs-fixer fix
metrics:
php ./vendor/bin/phpmetrics --report-html=myreport ./src
composer:
composer valid
container:
symfony console lint:container
yaml:
symfony console lint:yaml config
routes:
php bin/console debug:router
doctrine:
symfony console doctrine:schema:validate
symfony console doctrine:mapping:info
analyse:
make composer
make container
make routes
make yaml
make twig
make phpmd
make insights
make phpstan
test:
composer prepare-test
vendor/bin/phpunit