forked from rollbar/rollbar-php
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 933 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 933 Bytes
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" : "ftrrtf/rollbar-notifier",
"description" : "Monitors errors and exceptions and reports them to Rollbar",
"keywords" : ["logging", "debugging", "monitoring", "errors", "exceptions"],
"type" : "library",
"license" : "MIT",
"authors" : [
{
"name" : "Valeriy Rabievskiy",
"email" : "dev@ftrrtf.com",
"role" : "Developer"
},
{
"name" : "Brian Rue",
"email" : "brian@rollbar.com",
"role" : "Developer"
}
],
"require" : {
"symfony/options-resolver" : "~2.6|~3.0",
"php" : ">=5.3"
},
"suggest": {
"ext-curl" : "cUrl extension for cUrl transport"
},
"require-dev" : {
"phpspec/phpspec" : "2.*"
},
"config" : {
"bin-dir" : "bin"
},
"autoload" : {
"psr-4" : {
"Ftrrtf\\" : "src/Ftrrtf/"
}
}
}