build: Adding MinusX

Change-Id: I659607c0102b1e715e8b99f340cb1cc5f605e77e
This commit is contained in:
Kunal Mehta 2017-11-03 17:07:50 -07:00
parent 358d00b6ae
commit cdc1fadd5b
1 changed files with 6 additions and 3 deletions

View File

@ -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 ."
]
}
}