forked from diginov/craft-sentry-logger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.49 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
48
49
50
51
{
"name": "diginov/craft-sentry-logger",
"description": "Pushes Craft CMS logs to Sentry through a real Yii 2 log target",
"version": "4.1.1",
"type": "craft-plugin",
"keywords": [
"sentry",
"sentry-logger",
"craft",
"cms",
"craftcms",
"craft-plugin",
"yii2"
],
"license": "MIT",
"authors": [
{
"name": "Diginov",
"homepage": "https://github.com/diginov"
}
],
"support": {
"email": "support@diginov.com",
"issues": "https://github.com/diginov/craft-sentry-logger/issues",
"source": "https://github.com/diginov/craft-sentry-logger",
"docs": "https://github.com/diginov/craft-sentry-logger/blob/main/README.md",
"rss": "https://github.com/diginov/craft-sentry-logger/releases.atom"
},
"require": {
"craftcms/cms": "^4.0.0",
"sentry/sdk": "^3.2.0"
},
"autoload": {
"psr-4": {
"diginov\\sentrylogger\\": "src/"
}
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"extra": {
"name": "Sentry Logger",
"handle": "sentry-logger",
"developer": "Diginov",
"changelogUrl": "https://raw.githubusercontent.com/diginov/craft-sentry-logger/main/CHANGELOG.md",
"documentationUrl": "https://github.com/diginov/craft-sentry-logger/blob/main/README.md"
}
}