diff --git a/composer.json b/composer.json index 76f8c53..06a7c51 100644 --- a/composer.json +++ b/composer.json @@ -53,11 +53,20 @@ "psalm", "rector process --dry-run" ], + "sa": "@analyze", "ci": [ "Composer\\Config::disableProcessTimeout", + "@cs", + "@deduplicate", + "@inspect", "@analyze", - "@style" + "@test" ], - "style": "php-cs-fixer fix --verbose --ansi --using-cache=no" + "cs": "php-cs-fixer fix --ansi --verbose --dry-run --diff", + "cs-fix": "php-cs-fixer fix --ansi --verbose --diff --using-cache=yes", + "style": "@cs-fix", + "deduplicate": "phpcpd app/ src/", + "inspect": "deptrac analyze --cache-file=build/deptrac.cache", + "mutate": "infection --threads=2 --skip-initial-tests --coverage=build/phpunit" } }