forked from a64f7bb4-7358-4778-9fbe-3b882c34cc1d/v1
62 lines
1.6 KiB
JSON
62 lines
1.6 KiB
JSON
{
|
|
"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": "paras@laravel-enlightn.com"
|
|
},
|
|
{
|
|
"name": "Miguel Piedrafita",
|
|
"email": "soy@miguelpiedrafita.com"
|
|
}
|
|
],
|
|
"support": {
|
|
"issues": "https://github.com/enlightn/security-checker/issues"
|
|
},
|
|
"require": {
|
|
"php": ">=5.6",
|
|
"ext-json": "*",
|
|
"symfony/console": "^3.4|^4|^5|^6",
|
|
"symfony/finder": "^3|^4|^5|^6",
|
|
"symfony/process": "^3.4|^4|^5|^6",
|
|
"symfony/yaml": "^3.4|^4|^5|^6",
|
|
"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
|
|
}
|