-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathMakefile
More file actions
33 lines (22 loc) · 829 Bytes
/
Makefile
File metadata and controls
33 lines (22 loc) · 829 Bytes
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
.PHONY : lint tests style phpstan psalm phpmd coverage composer-unused composer-require-checker composer-audit
all : lint tests style phpstan psalm composer-unused composer-require-checker
tests :
vendor/bin/phpunit tests/ --configuration=tests/phpunit.xml
lint :
vendor/bin/parallel-lint src tests
style :
vendor/bin/phpcs --standard=tools/coding_standard.xml --ignore=vendor -s .
phpstan :
vendor/bin/phpstan analyze -c tools/phpstan.neon --memory-limit=256M
psalm :
vendor/bin/psalm --config=tools/psalm.xml
phpmd :
vendor/bin/phpmd src/ ansi tools/phpmd.xml
coverage :
vendor/bin/phpunit tests/ --configuration=tests/phpunit.xml --coverage-text=php://stdout
composer-unused :
vendor/bin/composer-unused
composer-require-checker :
vendor/bin/composer-require-checker check
composer-audit :
composer audit