-
Notifications
You must be signed in to change notification settings - Fork 1
/
commands.txt
33 lines (22 loc) · 1.08 KB
/
commands.txt
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
composer dump-autoload
composer install
composer install --prefer-source
composer update --with-dependencies
composer outdated -D
npm outdated -D
phpstan
psalm
phpcs -s --exclude=Generic.Files.LineEndings
phpcbf --exclude=Generic.Files.LineEndings
.\vendor\bin\phpunit --coverage-html ./tests/coverage/ --coverage-clover ./tests/coverage.xml
[...]\php7-nts-current\php.exe [...]\php-bin\phpDocumentor.phar
phpmetrics --report-html=docs/metrics --git ./app
REM Not sure how supported this is as of 2021
pdepend --summary-xml=docs\pdepend\summary.xml --jdepend-chart=docs\pdepend\jdepend.svg --overview-pyramid=docs\pdepend\pyramid.svg ./app
phpcpd app
phpmd app xml cleancode,codesize,design,naming,unusedcode --reportfile ./docs/phpmd/report.xml
phpmd app html cleancode --reportfile ./docs/phpmd/report-cleancode.html
phpmd app html codesize --reportfile ./docs/phpmd/report-codesize.html
phpmd app html design --reportfile ./docs/phpmd/report-design.html
phpmd app html naming --reportfile ./docs/phpmd/report-naming.html
phpmd app html unusedcode --reportfile ./docs/phpmd/report-unusedcode.html