Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,9 @@
"check:dynamic": [
"@check:tests"
],
"check:php:codesniffer": "phpcs --standard=./Build/phpcs/config.xml config src tests",
"check:php:fixer": "\"./.phive/php-cs-fixer\" --config=./Build/php-cs-fixer/config.php fix --dry-run -v --show-progress=dots config src tests",
"check:php:lint": "parallel-lint config src tests",
"check:php:codesniffer": "phpcs --standard=./Build/phpcs/config.xml Build config src tests",
"check:php:fixer": "\"./.phive/php-cs-fixer\" --config=./Build/php-cs-fixer/config.php fix --dry-run -v --show-progress=dots Build config src tests",
"check:php:lint": "parallel-lint Build config src tests",
"check:php:md": "phpmd src text config/phpmd.xml",
"check:php:rector": "rector process --no-progress-bar --dry-run --config=config/rector.php",
"check:php:stan": "phpstan --no-progress --configuration=./Build/phpstan/phpstan.neon",
Expand Down
1 change: 1 addition & 0 deletions config/rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
return RectorConfig::configure()
->withPaths(
[
__DIR__ . '/../Build',
__DIR__ . '/../config',
__DIR__ . '/../src',
__DIR__ . '/../tests',
Expand Down