forked from inspiredminds/contao-event-registration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.85 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": "inspiredminds/contao-event-registration",
"description": "Contao extension to allow registration for events.",
"type": "contao-bundle",
"license": "LGPL-3.0-or-later",
"homepage": "https://github.com/inspiredminds/contao-event-registration",
"authors": [
{
"name": "Fritz Michael Gschwantner",
"email": "[email protected]",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/inspiredminds/contao-event-registration/issues",
"source": "https://github.com/inspiredminds/contao-event-registration",
"forum": "https://community.contao.org/de"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/fritzmg"
}
],
"require": {
"php": ">=7.1",
"contao/core-bundle": "^4.9",
"contao/calendar-bundle": "^4.9",
"contao-components/contao": ">=7.1.6",
"inspiredminds/contao-backend-forms": ">=0.3, <1",
"league/csv": "^9.6",
"ramsey/uuid": "^3.0 || ^4.0",
"symfony/config": "^4.4 || ^5.1",
"symfony/dependency-injection": "^4.4 || ^5.1",
"symfony/http-foundation": "^4.4 || ^5.1",
"symfony/http-kernel": "^4.4 || ^5.1",
"symfony/routing": "^4.4 || ^5.1",
"symfony/security-core": "^4.4 || ^5.1",
"terminal42/contao-node": "^1.3",
"terminal42/notification_center": "^1.5",
"terminal42/service-annotation-bundle": "^1.1"
},
"autoload": {
"psr-4": {
"InspiredMinds\\ContaoEventRegistration\\": "src/"
}
},
"extra": {
"contao-manager-plugin": "InspiredMinds\\ContaoEventRegistration\\ContaoManager\\Plugin"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16"
}
}