Makefile 489 Bytes
Newer Older
冯超鹏's avatar
冯超鹏 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
.PHONY : tests lint static report coverage

all : tests lint static report

tests :
	vendor/bin/phpunit tests/ --configuration=tests/phpunit.xml

lint :
	vendor/bin/phpcs --standard=coding_standard.xml --ignore=vendor .

static :
	vendor/bin/phpstan analyze --level max src/ tests/
	vendor/bin/phpmd src/ text cleancode,codesize,design,unusedcode,naming

coverage :
	vendor/bin/phpunit tests/ --configuration=tests/phpunit.xml --coverage-text=php://stdout

report :
	vendor/bin/phploc src/