-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
28 lines (28 loc) · 907 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
{
"name": "lightswitch05/php-version-audit",
"bin": "php-version-audit",
"license": "Apache-2.0",
"description": "A convenience tool to easily check a given PHP version against a regularly updated list of CVE exploits, new releases, and end of life dates",
"keywords": ["security", "audit", "vulnerability", "version", "php", "scanner", "cve"],
"autoload": {
"psr-4": {
"lightswitch05\\PhpVersionAudit\\": "src/"
}
},
"require": {
"php": ">=8.2.0",
"ext-json": "*",
"ext-curl": "*"
},
"require-dev": {
"ext-libxml": "*",
"ext-dom": "*",
"ext-zlib": "*",
"ext-zip": "*",
"codeception/codeception": "^5.1",
"vimeo/psalm": "^5.25",
"codeception/module-asserts": "^3.0",
"rector/rector": "^1.2.3",
"symplify/easy-coding-standard": "^12.3"
}
}