mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/SecureLinkFixer
synced 2024-11-24 23:45:37 +00:00
b14450fe3a
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: Ibebf265e10f8fdb0c26046a81c5f6978b0230537
24 lines
483 B
JSON
24 lines
483 B
JSON
{
|
|
"require-dev": {
|
|
"jakub-onderka/php-parallel-lint": "1.0.0",
|
|
"mediawiki/mediawiki-codesniffer": "26.0.0",
|
|
"jakub-onderka/php-console-highlighter": "0.3.2",
|
|
"mediawiki/minus-x": "0.3.1",
|
|
"mediawiki/mediawiki-phan-config": "0.6.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": "2.0.2"
|
|
}
|
|
}
|