-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
69 lines (69 loc) · 1.92 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
62
63
64
65
66
67
68
69
{
"name": "oneup/contao-event-generator-bundle",
"type": "contao-bundle",
"description": "Generate multiple events with ease!",
"keywords": [
"contao",
"modules",
"calendar",
"events",
"generator"
],
"homepage": "https://1up.io",
"license": "MIT",
"authors": [
{
"name": "David Greminger",
"email": "[email protected]",
"homepage": "https://1up.io",
"role": "Developer"
},
{
"name": "nuun GmbH",
"email": "[email protected]",
"homepage": "https://nuun.ch",
"role": "Projectmanager"
}
],
"require": {
"php": "^7.3",
"contao/calendar-bundle": "^4.9",
"contao/core-bundle": "^4.9",
"kmielke/calendar-extended-bundle": "^1.0",
"menatwork/contao-multicolumnwizard-bundle": "^3.4"
},
"require-dev": {
"contao/manager-plugin": "^2.0",
"contao/news-bundle": "^4.9",
"contao/phpstan": "^0.12.7",
"friendsofphp/php-cs-fixer": "^2.16",
"phpstan/phpstan": "^0.12.10",
"phpunit/phpunit": "^8.5",
"symfony/var-dumper": "^4.4 || ^5.0"
},
"config": {
"preferred-install": {
"contao/core-bundle": "source",
"*": "dist"
},
"sort-packages": true
},
"extra": {
"contao-manager-plugin": "Oneup\\Contao\\EventGeneratorBundle\\ContaoManager\\Plugin"
},
"autoload": {
"psr-4": {
"Oneup\\Contao\\EventGeneratorBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Oneup\\Contao\\EventGeneratorBundle\\Tests\\": "tests"
}
},
"support": {
"email": "[email protected]",
"issues": "https://github.com/1up-lab/contao-event-generator-bundle/issues",
"source": "https://github.com/1up-lab/contao-event-generator-bundle/issues"
}
}