-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.77 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
{
"name": "contaoblackforest/contao-dropzone-upload",
"description": "Contao dropzone directly upload images in edit mask for Contao OpenSource CMS",
"keywords": [
"contao",
"backend",
"content",
"element",
"dropzone",
"module"
],
"type": "contao-module",
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "Sven Baumann",
"email": "baumann.sv@gmail.com",
"homepage": "https://github.com/ContaoBlackforest",
"role": "Developer"
},
{
"name": "Dominik Tomasi",
"email": "dominik.tomasi@gmail.com",
"homepage": "https://github.com/ContaoBlackforest",
"role": "Developer"
}
],
"support": {
"email": "baumann.sv@gmail.com",
"issues": "https://github.com/ContaoBlackforest/contao-dropzone-upload/issues",
"wiki": "https://github.com/ContaoBlackforest/contao-dropzone-upload/wiki",
"irc": "irc://irc.freenode.org/contao.dev",
"source": "https://github.com/ContaoBlackforest/contao-dropzone-upload"
},
"require": {
"php": ">=5.4",
"contao/core-bundle": "~3.5 || ~4.4",
"contao-community-alliance/composer-plugin": "~2.4 || ~3.0",
"contao-community-alliance/dependency-container": "~1.8 || ~2.0",
"contao-community-alliance/event-dispatcher": "~1.3 || ~2.0",
"menatwork/contao-multicolumnwizard": "~3.3"
},
"require-dev": {},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"ContaoBlackForest\\DropZoneBundle\\": "src"
}
},
"extra": {
"contao": {
"sources": {
"src/Resources/contao": "system/modules/dropzone-upload",
"src/Resources/public": "assets/dropzone-upload"
}
},
"branch-alias": {
"dev-master": "1.1.x-dev",
"dev-develop": "1.2.x-dev"
}
}
}