-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
59 lines (59 loc) · 1.56 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
{
"name": "oneup/contao-sentry-bundle",
"type": "contao-bundle",
"description": "This bundle provides an easy integration of sentry.io for Contao 4.4.x and newer.",
"keywords": [
"contao",
"sentry",
"error",
"tracking",
"raven"
],
"homepage": "https://github.com/1up-lab/contao-sentry-bundle",
"license": "MIT",
"authors": [
{
"name": "David Greminger",
"email": "[email protected]",
"homepage": "https://github.com/bytehead",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"contao/core-bundle": "^4.13 || ^5.0",
"sentry/sentry-symfony": "^5.0",
"twig/twig": "^2.7 || ^3.0"
},
"require-dev": {
"contao/manager-plugin": "^2.0",
"friendsofphp/php-cs-fixer": "^2.13",
"phpstan/phpstan": "^1.10",
"sentry/sentry": "^3.0 || ^4.0",
"symfony/config": "^4.0 || ^5.0 || ^6.0",
"symfony/dependency-injection": "^4.0 || ^5.0 || ^6.0",
"symfony/http-kernel": "^4.0 || ^5.0 || ^6.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"contao-components/installer": true,
"contao/manager-plugin": true,
"php-http/discovery": true
}
},
"extra": {
"contao-manager-plugin": "Oneup\\ContaoSentryBundle\\ContaoManager\\Plugin"
},
"autoload": {
"psr-4": {
"Oneup\\ContaoSentryBundle\\": "src"
}
},
"support": {
"email": "[email protected]",
"issues": "https://github.com/1up-lab/contao-sentry-bundle/issues",
"irc": "irc://irc.freenode.org/contao.dev",
"source": "https://github.com/1up-lab/contao-sentry-bundle"
}
}