Remove rector.

This commit is contained in:
2023-08-04 07:30:40 +00:00
parent affde2589f
commit ec255543d9
4 changed files with 27 additions and 112 deletions

View File

@ -7,7 +7,6 @@
},
"require-dev": {
"phpunit/phpunit": "^10",
"rector/rector": "^0.17",
"phpstan/phpstan": "^1",
"laravel/pint": "^1",
"squizlabs/php_codesniffer": "*",
@ -28,11 +27,11 @@
"test-coverage": "vendor/bin/phpunit tests --testdox --coverage-filter src --coverage-html output/coverage --coverage-text --path-coverage --testdox-html output/test.html --log-junit output/test.xml ",
"analyze": [
"@analyze-phpstan",
"@analyze-phpcs",
"@analyze-psalm"
"@analyze-psalm",
"@analyze-phpcs"
],
"analyze-phpstan":"vendor/bin/phpstan analyze --error-format=raw",
"analyze-phpcs": "vendor/bin/phpcs --report=emacs --standard=PSR12 --exclude=Generic.Files.LineLength src tests",
"analyze-psalm": "vendor/bin/psalm"
"analyze-psalm": "vendor/bin/psalm --no-cache",
"analyze-phpcs": "vendor/bin/phpcs --report=emacs --standard=PSR12 --exclude=Generic.Files.LineLength src tests"
}
}