-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1.13 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1.13 KB
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": "socloz/monitoring-bundle",
"description": "A profiling/monitoring Symfony2 bundle for production servers - alerts on exceptions, logs profiling data & sends data to statsd/graphite",
"homepage": "https://github.com/SoCloz/SoclozMonitoringBundle",
"type": "symfony-bundle",
"keywords": [
"monitoring",
"profiling",
"alerting",
"production",
"exceptions",
"email",
"xhprof",
"statsd",
"graphite"
],
"license": "MIT",
"authors": [
{
"name": "CloseToMe",
"email": "tech@socloz.com",
"homepage": "http://www.socloz.com"
}
],
"require": {
"php": ">=5.3.2",
"symfony/framework-bundle": "~2.3|~3.0",
"symfony/browser-kit": "~2.3|~3.0",
"symfony/twig-bundle": "~2.3|~3.0",
"sensio/framework-extra-bundle": "~2.0|~3.0",
"guzzle/guzzle" : "@stable",
"swiftmailer/swiftmailer": "@stable"
},
"require-dev": {
"phpunit/phpunit": "^5.7.27"
},
"autoload": {
"psr-4": {"Socloz\\MonitoringBundle\\": ""}
}
}