forked from momosecurity/rhizobia_P
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
32 lines (32 loc) · 866 Bytes
/
composer.json
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
{
"name": "momosec/rhizobia",
"description": "provide protection against common security issues.",
"type": "library",
"keywords": ["vulnerability","csrf","ssrf","sqli","xss"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "thecastle",
"email": "[email protected]",
"role": "Developer MOMOSEC"
}
],
"require": {
"php": ">=5.6.0",
"ext-pdo": "*",
"ext-curl": "*",
"ext-mbstring": "*",
"ext-openssl": "*"
},
"autoload": {
"psr-4": {
"Security\\": "src/",
"Security\\URLSecurity\\": "src/URLSecurity",
"Security\\EncoderSecurity\\": "src/EncoderSecurity",
"Security\\SQLSecurity\\": "src/SLIM",
"Security\\HTMLPurifier\\": "src/HTMLPurifier",
"Security\\DataSecurity\\": "src/DataSecurity",
"Security\\FileSecurity\\": "src/FileSecurity"
}
}
}