2023-06-15 10:15:44 +00:00
|
|
|
analyze: analyze-yaml analyze-phpmd analyze-phpstan analyze-psalm analyze-phpcs
|
|
|
|
|
|
|
|
analyze-yaml:
|
2023-06-15 14:13:04 +00:00
|
|
|
vendor/bin/yaml-lint *.yml
|
2023-06-08 12:44:59 +00:00
|
|
|
analyze-phpmd:
|
2023-06-15 10:15:44 +00:00
|
|
|
vendor/bin/phpmd src text cleancode,codesize,controversial,design,naming,unusedcode
|
2023-06-08 12:44:59 +00:00
|
|
|
analyze-phpstan:
|
2023-07-06 06:41:05 +00:00
|
|
|
vendor/bin/phpstan analyze --level=8 --error-format=raw src/ backup
|
2023-06-08 12:44:59 +00:00
|
|
|
analyze-psalm:
|
2023-07-03 13:01:31 +00:00
|
|
|
vendor/bin/psalm --no-cache
|
2023-06-08 12:44:59 +00:00
|
|
|
analyze-phpcs:
|
2023-06-15 10:15:44 +00:00
|
|
|
vendor/bin/phpcs src backup --report=emacs --standard=PSR12
|
2023-06-08 12:44:59 +00:00
|
|
|
|
2023-06-19 12:46:32 +00:00
|
|
|
docs:
|
|
|
|
./phpDocumentor.phar --setting=graphs.enabled=true
|
|
|
|
|
2023-05-31 09:00:20 +00:00
|
|
|
install:
|
|
|
|
php composer.phar install --no-dev
|
|
|
|
install-dev:
|
2023-05-31 14:34:35 +00:00
|
|
|
php composer.phar install
|
|
|
|
test:
|
2023-06-15 10:15:44 +00:00
|
|
|
vendor/bin/phpunit tests
|
|
|
|
test-coverage:
|
2023-07-04 08:19:02 +00:00
|
|
|
vendor/bin/phpunit tests --testdox --coverage-filter src --coverage-html output/coverage --coverage-text --path-coverage --testdox-html output/test.html
|
2023-05-31 14:34:35 +00:00
|
|
|
|