-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
77 lines (77 loc) · 1.76 KB
/
Copy pathcomposer.json
File metadata and controls
77 lines (77 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "mediawiki/phan-taint-check-plugin",
"description": "A Phan plugin to do security checking",
"keywords": [
"php",
"static",
"analyzer",
"phan",
"security",
"taint"
],
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Brian Wolff",
"email": "bawolff+wn@gmail.com"
},
{
"name": "Daimona Eaytoy",
"email": "daimona.wiki@gmail.com"
}
],
"support": {
"issues": "https://phabricator.wikimedia.org/maniphest/task/edit/form/1/?projects=securitycheckplugin",
"source": "https://phabricator.wikimedia.org/diffusion/MTPS/",
"wiki": "https://www.mediawiki.org/wiki/SecurityCheckPlugin",
"irc": "irc://irc.libera.chat/wikimedia-dev"
},
"autoload": {
"psr-4": {
"SecurityCheckPlugin\\": "src/"
}
},
"require": {
"phan/phan": "~6.0.5",
"php": ">=8.3.0"
},
"require-dev": {
"ext-pdo": "*",
"mediawiki/mediawiki-codesniffer": "51.0.0",
"mediawiki/minus-x": "2.0.1",
"php-parallel-lint/php-console-highlighter": "1.0.0",
"php-parallel-lint/php-parallel-lint": "1.4.0",
"phpunit/phpunit": "10.5.63"
},
"suggest": {
"ext-mysqli": "Used for some mysqli function tests"
},
"scripts": {
"test": [
"parallel-lint . --exclude vendor --exclude tests/integration --exclude tests/phan-interaction",
"@phpcs",
"@minus-x",
"@phan-for-plugin",
"phpunit",
"@phan-tests"
],
"phpcs": "phpcs -p -s",
"minus-x": "minus-x check .",
"integration-tests": "bash ./tests/runtests.sh",
"phan-for-plugin": "bash ./tests/run-phan-on-plugin.sh",
"phan-tests": "bash ./tests/run-phan-tests.sh",
"fix": [
"minus-x fix .",
"phpcbf"
]
},
"minimum-stability": "stable",
"bin": [
"scripts/seccheck"
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}