-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 903 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
{
"name": "punktde/pt-sentry-client",
"type": "typo3-cms-extension",
"description": "Sentry package",
"authors": [
{
"name": "Team evo",
"email": "[email protected]",
"homepage": "https://punkt.de"
}
],
"keywords": [
"TYPO3",
"cms",
"site package"
],
"license": "GPL-2.0-or-later",
"require": {
"php": "^8.2",
"typo3/cms-core": "^12.4",
"sentry/sentry" : "^4.0",
"neos/utility-files": "*"
},
"autoload": {
"psr-4": {
"PunktDe\\PtSentryClient\\": "Classes/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "pt_sentry_client"
}
},
"config": {
"allow-plugins": {
"typo3/cms-composer-installers": false,
"typo3/class-alias-loader": false
}
}
}