-
Notifications
You must be signed in to change notification settings - Fork 19
/
composer.json
37 lines (37 loc) · 1.05 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
{
"name": "cloud-solutions/zend-sentry",
"description": "A Zend Framework 3 module that lets you log to the Sentry.io service.",
"keywords": ["log", "logging", "sentry", "raven", "zend-framework"],
"homepage": "https://github.com/cloud-solutions/zend-sentry",
"type": "library",
"version": "3.7.0",
"license": "MIT",
"authors": [
{
"name": "Markus Hausammann",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.0",
"sentry/sentry": "^1.9.2",
"zendframework/zend-eventmanager": "^2.5|| ^3.0",
"zendframework/zend-mvc": "^2.5 || ^3.0",
"zendframework/zend-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-0": {
"ZendSentry": "src/",
"ZendSentryTests": "tests/"
},
"classmap": [
"./Module.php"
]
}
}