build: Adding MinusX

Change-Id: I790981477bdda459ab25a667f01cfc3011020bac
This commit is contained in:
Kunal Mehta 2017-11-03 17:05:53 -07:00
parent 5bb568f5c4
commit 361f8b55e5

View file

@ -7,13 +7,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": {
"fix": "phpcbf",
"fix": [
"phpcbf",
"minus-x fix ."
],
"test": [
"parallel-lint . --exclude vendor --exclude node_modules",
"phpcs -p -s"
"phpcs -p -s",
"minus-x check ."
]
}
}