-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
41 lines (41 loc) · 1017 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
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "crawly/mezzio-sentry",
"description": "Mezzio integration for Sentry.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Luiz Henrique Gomes Palacio",
"email": "lhpalacio@outlook.com"
}
],
"extra": {
"zf": {
"config-provider": "MezzioSentry\\ConfigProvider"
},
"laminas": {
"config-provider": "MezzioSentry\\ConfigProvider"
}
},
"require": {
"php": "^7.3",
"psr/http-message": "^1.0",
"psr/http-server-middleware": "^1.0",
"psr/container": "^1.0",
"laminas/laminas-stratigility": "^3.2",
"sentry/sdk": "^2.1"
},
"suggest": {
"mezzio/mezzio-problem-details": "Problem Details for PSR-7 Applications"
},
"autoload": {
"psr-4": {
"MezzioSentry\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MezzioSentryTest\\": "test/"
}
}
}