-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
29 lines (22 loc) · 1020 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
help:
@echo "Por favor, use \"make <comando>\" onde <comando> pode ser:"
@echo " test para executar os testes com PHPUnit (Docker obrigatório)"
@echo " stan para validar o código utilizando o PHPStan"
@echo " cs para validar o código utilizando o PHP Code Sniffer"
@echo " fix tenta corrigir os erros de padronização com PHP Code Sniffer"
@echo " reference para exibir a documentação de referência"
@echo " docs para exibir a documentação de uso (NPM obrigatório)"
changelog:
npx conventional-changelog-cli -p angular -i CHANGELOG.md -s
test:
vendor/bin/phpunit --config "$(shell pwd)/phpunit.xml"
stan:
vendor/bin/phpstan analyze src
cs:
vendor/bin/phpcs --colors -s --bootstrap=vendor/autoload.php --standard=PSR1,PSR12 -p --report=full src/
fix:
vendor/bin/phpcbf --colors -s --bootstrap=vendor/autoload.php --standard=PSR1,PSR12 -p --report=full src/
reference:
@echo "Coming soon"
docs:
@echo "Coming soon"