mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/MinervaNeue
synced 2024-11-13 17:37:07 +00:00
24eac21513
The plugin checks and flags potential security issues (XSS, SQLi, etc.) using static analysis. See <https://www.mediawiki.org/wiki/Phan-taint-check-plugin> for more details. Change-Id: Ief36c5b7c3fc61950e52044fde7feeed9fe28831
23 lines
437 B
JSON
23 lines
437 B
JSON
{
|
|
"require-dev": {
|
|
"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",
|
|
"minus-x check ."
|
|
],
|
|
"fix": [
|
|
"phpcbf",
|
|
"minus-x fix ."
|
|
]
|
|
},
|
|
"extra": {
|
|
"phan-taint-check-plugin": "1.4.0"
|
|
}
|
|
}
|