-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.13 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
{
"name": "zae/wp-vulnerabilities",
"description": "Scan your wordpress installation for known vulnerabilities",
"type": "library",
"keywords": ["wordpress", "vulnerabilities", "scanner", "wpvulndb.com"],
"require": {
"php": ">=5.4",
"guzzlehttp/guzzle": "^5.3|^6.0",
"illuminate/container": "^5.2",
"illuminate/console": "^5.2",
"symfony/yaml": "^2.0|^3.0",
"illuminate/filesystem": "^5.2",
"illuminate/pipeline": "^5.2",
"composer/semver": "^0.1|^1.0",
"illuminate/events": "^5.2",
"zae/wp-fileheader": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^5.1"
},
"license": "MIT",
"authors": [
{
"name": "Ezra Pool",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Zae\\WPVulnerabilities\\": "src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Zae\\WPVulnerabilities\\Tests\\": "tests/unit"
}
},
"bin": ["src/wp_scan"]
}