-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.02 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
{
"name": "hexafuchs/laminas-security",
"description": "Security tool to automatically analyse potential security issues of laminas and mezzio applications",
"version": "0.1.3",
"type": "library",
"keywords": [
"laminas",
"mezzio",
"security"
],
"license": "MIT",
"authors": [
{
"name": "Yasu",
"email": "[email protected]"
}
],
"prefer-stable": true,
"require": {
"php": "^8.1",
"laminas/laminas-cli": "^1.8",
"laminas/laminas-http": "^2.18",
"laminas/laminas-servicemanager": "^3.15",
"symfony/process": "^6.3"
},
"autoload": {
"psr-4": {
"Hexafuchs\\LaminasSecurity\\": "src/"
}
},
"extra": {
"laminas": {
"component": "Hexafuchs\\LaminasSecurity",
"config-provider": "Hexafuchs\\LaminasSecurity\\ConfigProvider"
}
},
"suggest": {
"vimeo/psalm": "Required for the Taint Analysis"
}
}