mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/SpamBlacklist
synced 2024-11-28 00:50:28 +00:00
445aaa190a
adding composer name ant type in composer.json allow to install extension using composer Bug: T191003 Change-Id: Icd660e72f39210a0f96210b364ee461fb06f813b
26 lines
552 B
JSON
26 lines
552 B
JSON
{
|
|
"name": "mediawiki/spam-blacklist",
|
|
"type": "mediawiki-extension",
|
|
"require-dev": {
|
|
"jakub-onderka/php-parallel-lint": "1.0.0",
|
|
"jakub-onderka/php-console-highlighter": "0.3.2",
|
|
"mediawiki/mediawiki-codesniffer": "17.0.0",
|
|
"mediawiki/minus-x": "0.3.1",
|
|
"mediawiki/mediawiki-phan-config": "0.1.0"
|
|
},
|
|
"scripts": {
|
|
"fix": [
|
|
"phpcbf",
|
|
"minus-x fix ."
|
|
],
|
|
"test": [
|
|
"parallel-lint . --exclude node_modules --exclude vendor",
|
|
"phpcs -p -s",
|
|
"minus-x check ."
|
|
]
|
|
},
|
|
"extra": {
|
|
"phan-taint-check-plugin": "1.1.0"
|
|
}
|
|
}
|