build: Adding MinusX

Change-Id: Ic0738a1430dac63d95ff25b81c6d220f11747347
This commit is contained in:
Kunal Mehta 2017-11-02 18:28:15 -07:00
parent 41da25608f
commit 4256dade00

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