-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathcomposer.json
61 lines (61 loc) · 1.6 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "enlightn/security-checker",
"description": "A PHP dependency vulnerabilities scanner based on the Security Advisories Database.",
"type": "library",
"keywords": [
"php",
"package",
"security",
"scanner",
"vulnerability scanner",
"security advisories"
],
"license": "MIT",
"authors": [
{
"name": "Paras Malhotra",
"email": "[email protected]"
},
{
"name": "Miguel Piedrafita",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/enlightn/security-checker/issues"
},
"require": {
"php": ">=8.2",
"ext-json": "*",
"symfony/console": "^7",
"symfony/finder": "^3|^4|^5|^6|^7",
"symfony/process": "^3.4|^4|^5|^6|^7",
"symfony/yaml": "^3.4|^4|^5|^6|^7",
"guzzlehttp/guzzle": "^6.3|^7.0"
},
"require-dev": {
"ext-zip" : "*",
"friendsofphp/php-cs-fixer": "^2.18|^3.0",
"phpunit/phpunit": "^5.5|^6|^7|^8|^9"
},
"bin": ["security-checker"],
"autoload": {
"psr-4": {
"Enlightn\\SecurityChecker\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Enlightn\\SecurityChecker\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit --colors=always",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}