-
Notifications
You must be signed in to change notification settings - Fork 438
/
composer.json
37 lines (37 loc) · 1.05 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
{
"name": "wbraganca/yii2-dynamicform",
"description": "It is widget to yii2 framework to clone form elements in a nested manner, maintaining accessibility.",
"keywords": [
"wbraganca",
"yii2",
"extension",
"widget",
"yii2-dynamicform",
"copy DOM element",
"yii2 dynamic form"
],
"type": "yii2-extension",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/wbraganca/yii2-dynamicform/issues",
"wiki": "https://github.com/wbraganca/yii2-dynamicform/wiki/",
"source": "https://github.com/wbraganca/yii2-dynamicform"
},
"authors": [
{
"name": "Wanderson Bragança",
"email": "[email protected]",
"homepage": "http://wbraganca.com"
}
],
"require": {
"yiisoft/yii2": "~2.0.5",
"symfony/css-selector": "~2.8|~3.0",
"symfony/dom-crawler": "~2.8|~3.0"
},
"autoload": {
"psr-4": {
"wbraganca\\dynamicform\\": "src"
}
}
}