-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.08 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
{
"name":"wangaz/contao-form-auto-grow",
"description":"Automatically resizes textareas depending on their content",
"keywords":["contao", "auto", "grow", "textarea"],
"type":"contao-module",
"homepage":"http://www.wangaz.com",
"license":"CC-BY-SA-4.0",
"authors":[
{
"name":"Wangaz.",
"homepage":"http://www.wangaz.com"
}
],
"support":{
"issues":"https://github.com/wangaz/contao-form-auto-grow/issues",
"source":"https://github.com/wangaz/contao-form-auto-grow",
"forum":"https://community.contao.org/de/showthread.php?1946"
},
"require":{
"php":">=5.3",
"contao/core":"~3.0",
"contao-community-alliance/composer-installer":"*"
},
"autoload": {
"classmap": ["src"]
},
"replace": {
"contao-legacy/autogrowingtextarea": "*"
},
"extra":{
"contao": {
"symlinks":{
"src/assets/jquery/autogrow":"assets/jquery/autogrow",
"src/assets/mootools/autogrow":"assets/mootools/autogrow",
"src/system/modules/form-auto-grow":"system/modules/form-auto-grow"
},
"runonce": [
"system/modules/form-auto-grow/config/runonce.php"
]
}
}
}