-
Notifications
You must be signed in to change notification settings - Fork 34
/
composer.json
61 lines (61 loc) · 1.38 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
52
53
54
55
56
57
58
59
60
61
{
"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": "christoph.lehmann@networkteam.com"
}
],
"require": {
"php": "^8.0",
"typo3/cms-backend": "^11.0 || ^12.0 || ^13.0",
"typo3/cms-core": "^11.0 || ^12.0 || ^13.0",
"typo3/cms-frontend": "^11.0 || ^12.0 || ^13.0",
"sentry/sentry": "^4.6"
},
"extra": {
"typo3/cms": {
"extension-key": "sentry_client",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"app-dir": ".Build",
"web-dir": ".Build/Web"
}
},
"autoload": {
"psr-4": {
"Networkteam\\SentryClient\\": "Classes/"
}
},
"config": {
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true
},
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"sort-packages": true
},
"require-dev": {
"saschaegerer/phpstan-typo3": "^1.1"
},
"scripts": {
"phpstan": [
"phpstan analyse ."
]
}
}