-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
44 lines (44 loc) · 1.06 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": "move-elevator/sentry-log-pusher",
"description": "Parse PHP5 FatalExceptions from the error log and push it to sentry.",
"keywords": [
"FatalException",
"PHP",
"Sentry",
"ErrorLog",
"parse"
],
"homepage": "https://github.com/move-elevator/sentry-log-pusher",
"authors": [
{
"name": "move:elevator - Team BS",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"source": "https://github.com/move-elevator/sentry-log-pusher",
"issues": "https://github.com/move-elevator/sentry-log-pusher/issues"
},
"license": "MIT",
"require": {
"php": ">=5.5",
"sentry/sentry": "^0.21.2",
"tm/error-log-parser": "^1.2",
"symfony/console": "^3.1"
},
"require-dev": {
"phpunit/phpunit": "~4.8"
},
"autoload": {
"psr-4": {
"MoveElevator\\Sentry\\LogPusher\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MoveElevator\\Sentry\\LogPusher\\": "src/",
"MoveElevator\\Sentry\\LogPusher\\Tests\\": "tests/"
}
}
}