forked from cloud-solutions/zend-sentry
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (44 loc) · 1.24 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
{
"name": "andrebian/laminas-sentry",
"description": "A Laminas 3 module that lets you log to the Sentry.io service.",
"keywords": ["log", "logging", "sentry", "raven", "laminas-framework"],
"homepage": "https://github.com/andrebian/laminas-sentry",
"type": "library",
"version": "3.7.0",
"license": "MIT",
"authors": [
{
"name": "Markus Hausammann",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Andre Cardoso",
"email": "[email protected]",
"role": "Contributor"
}
],
"require": {
"php": ">=7.0",
"ext-json": "*",
"sentry/sentry": "1.11.0",
"laminas/laminas-eventmanager": "^2.5|| ^3.0",
"laminas/laminas-mvc": "^2.5 || ^3.0",
"laminas/laminas-log": "^2.5 || ^3.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.5"
},
"conflict": {
"zendframework/zendframework": "<3.0.0"
},
"autoload": {
"psr-4": {
"LaminasSentry\\": "src/",
"LaminasSentryTests\\": "tests/"
},
"classmap": [
"./Module.php"
]
}
}