forked from networkteam/sentry_client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1016 Bytes
/
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": "networkteam/sentry-client",
"description": "A Sentry client for TYPO3. It forwards errors and exceptions to Sentry - https://sentry.io/",
"type": "typo3-cms-extension",
"keywords": [
"TYPO3",
"extension",
"sentry",
"monitoring"
],
"support": {
"issues": "https://github.com/networkteam/sentry_client"
},
"homepage": "https://networkteam.com",
"license": [
"GPL-2.0-or-later"
],
"authors": [
{
"name": "Christoph Lehmann",
"email": "[email protected]"
}
],
"require": {
"typo3/cms-backend": "^10.0 || ^11.0",
"typo3/cms-core": "^10.0 || ^11.0",
"typo3/cms-frontend": "^10.0 || ^11.0",
"sentry/sdk": "^3.1.0"
},
"extra": {
"typo3/cms": {
"extension-key": "sentry_client",
"cms-package-dir": "{$vendor-dir}/typo3/cms"
}
},
"autoload": {
"psr-4": {
"Networkteam\\SentryClient\\": "Classes/"
}
},
"replace": {
"typo3-ter/sentry-client": "self.version"
}
}