build: Adding MinusX

Change-Id: I693fffe11e2c733223b6c6bc6ccc371023032675
This commit is contained in:
Kunal Mehta 2017-11-02 18:28:21 -07:00
parent c06498620d
commit 18019c6776

View file

@ -2,13 +2,18 @@
"require-dev": {
"jakub-onderka/php-parallel-lint": "0.9.2",
"jakub-onderka/php-console-highlighter": "0.3.2",
"mediawiki/mediawiki-codesniffer": "14.1.0"
"mediawiki/mediawiki-codesniffer": "14.1.0",
"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 ."
]
}
}