build: Adding MinusX

Change-Id: Iedabfee60461f0c95d304d8021785c35b3293db0
This commit is contained in:
Kunal Mehta 2017-11-03 18:59:16 -07:00
parent 4c5e32e925
commit 18ddfcd388

View file

@ -2,13 +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 -s -p"
"phpcs -s -p",
"minus-x check ."
],
"fix": "phpcbf"
"fix": [
"phpcbf",
"minus-x fix ."
]
}
}