summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'Echo/composer.json')
-rw-r--r--Echo/composer.json16
1 files changed, 11 insertions, 5 deletions
diff --git a/Echo/composer.json b/Echo/composer.json
index 78987234..7a62b001 100644
--- a/Echo/composer.json
+++ b/Echo/composer.json
@@ -1,16 +1,22 @@
{
"require-dev": {
- "jakub-onderka/php-parallel-lint": "0.9.2",
- "mediawiki/mediawiki-codesniffer": "0.12.0",
- "jakub-onderka/php-console-highlighter": "0.3.2"
+ "jakub-onderka/php-parallel-lint": "1.0.0",
+ "mediawiki/mediawiki-codesniffer": "22.0.0",
+ "jakub-onderka/php-console-highlighter": "0.3.2",
+ "mediawiki/minus-x": "0.3.1"
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor --exclude node_modules",
- "phpcs -p -s"
+ "phpcs -p -s",
+ "minus-x check ."
],
"fix": [
- "phpcbf"
+ "phpcbf",
+ "minus-x fix ."
]
+ },
+ "extra": {
+ "phan-taint-check-plugin": "1.5.0"
}
}