-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathcomposer.json
executable file
·47 lines (47 loc) · 1.11 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
47
{
"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": "^7||^8",
"sentry/sdk": "^3",
"composer/package-versions-deprecated": "^1.11",
"silverstripe/framework": "^5"
},
"require-dev": {
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"PhpTek\\Sentry\\": "src/",
"PhpTek\\Sentry\\Tests\\": "tests/"
}
},
"config": {
"process-timeout": 900,
"optimize-autoloader": true
},
"extra": {
"installer-name": "sentry"
},
"minimum-stability": "dev"
}