-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
54 lines (54 loc) · 1.16 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
{
"name": "guave/sentry-bundle",
"description": "Sentry integration for Contao 4.9+",
"type": "contao-bundle",
"license": "ISC",
"authors": [
{
"name": "Christopher Stadler",
"email": "[email protected]",
"homepage": "https://github.com/guavestudios"
}
],
"require": {
"php": "^7.4 || ^8.0",
"contao/core-bundle": "^4.9",
"sentry/sentry": "^3.0",
"sentry/sentry-symfony": "^4.8"
},
"require-dev": {
"roave/security-advisories": "dev-latest"
},
"conflict": {
"contao/core": "*",
"contao/manager-plugin": "<2.0 || >=3.0"
},
"autoload": {
"psr-4": {
"Guave\\SentryBundle\\": "src/"
},
"classmap": [
"contao/"
],
"exclude-from-classmap": [
"contao/config/",
"contao/dca/",
"contao/languages/",
"contao/templates/"
]
},
"config": {
"allow-plugins": {
"contao-components/installer": true,
"contao/manager-plugin": true,
"php-http/discovery": false
}
},
"extra": {
"contao-manager-plugin": "Guave\\SentryBundle\\ContaoManager\\Plugin"
},
"support": {
"issues": "https://github.com/guavestudios/SentryBundle/issues",
"source": "https://github.com/guavestudios/SentryBundle"
}
}