backupscript/Makefile

14 lines
413 B
Makefile
Raw Normal View History

2023-05-31 09:00:20 +00:00
analyze-all:
@echo PHPMessDetector
-./vendor/bin/phpmd src text cleancode,codesize,controversial,design,naming,unusedcode
@echo PHPStan
-./vendor/bin/phpstan analyze --level=7 src/ backup
@echo Psalm
-./vendor/bin/psalm
install:
php composer.phar install --no-dev
install-dev:
2023-05-31 14:34:35 +00:00
php composer.phar install
test:
./vendor/bin/phpunit tests --testdox --coverage-filter src --coverage-html output/coverage