diff --git a/composer.json b/composer.json index 5fb7206..4f83162 100644 --- a/composer.json +++ b/composer.json @@ -2,15 +2,18 @@ "require-dev": { "jakub-onderka/php-parallel-lint": "0.9.2", "mediawiki/mediawiki-codesniffer": "14.1.0", - "jakub-onderka/php-console-highlighter": "0.3.2" + "jakub-onderka/php-console-highlighter": "0.3.2", + "mediawiki/minus-x": "0.2.0" }, "scripts": { "test": [ "parallel-lint . --exclude vendor --exclude node_modules", - "phpcs -p -s" + "phpcs -p -s", + "minus-x check ." ], "fix": [ - "phpcbf -p" + "phpcbf -p", + "minus-x fix ." ] } }