forked from phptek/silverstripe-sentry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·46 lines (46 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
45
46
{
"name": "phptek/sentry",
"type": "silverstripe-vendormodule",
"license": "BSD-3-Clause",
"description": "Sentry.io integration for SilverStripe. Binds Sentry.io to SilverStripe's error & exception handling subsystem.",
"keywords": [
"silverstripe",
"sentry",
"logging",
"logs",
"log",
"exception",
"error"
],
"authors": [
{
"name": "Russell Michell",
"homepage": "http://theruss.com/"
}
],
"replace": {
"silverstripe/sentry": "*"
},
"require": {
"php": "^5.4|<7.5",
"sentry/sdk": "^2",
"monolog/monolog": "^1.24.0",
"silverstripe/framework": "^4"
},
"require-dev": {
"phpunit/phpunit": "^5.7"
},
"autoload": {
"psr-4": {
"PhpTek\\Sentry\\": "src/",
"PhpTek\\Sentry\\Tests\\": "tests/"
}
},
"config": {
"process-timeout": 900
},
"extra": {
"installer-name": "sentry"
},
"minimum-stability": "dev"
}