-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
49 lines (49 loc) · 1.38 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
{
"name": "yii2-extensions/dynamicform",
"description": "Yii2 Dynamic form widget for cloning form elements in a nested manner while maintaining accessibility.",
"keywords": [
"yii2",
"extension",
"widget",
"yii2-dynamicform",
"copy DOM element",
"dynamic form",
"Yii2 extensions"
],
"type": "yii2-extension",
"license": "BSD-3-Clause",
"minimum-stability": "dev",
"prefer-stable": true,
"support": {
"issues": "https://github.com/yii2-extensions/dynamicform/issues",
"wiki": "https://github.com/yii2-extensions/dynamicform/wiki/",
"source": "https://github.com/yii2-extensions/dynamicform"
},
"authors": [
{
"name": "Wanderson Bragança",
"email": "[email protected]",
"homepage": "http://wbraganca.com"
},
{
"name": "Stefano Mtangoo",
"email": "[email protected]",
"homepage": "http://hosannahighertech.co.tz"
}
],
"require": {
"yiisoft/yii2": "^2.0.49",
"symfony/css-selector": "^6.4||^7.0",
"symfony/dom-crawler": "^6.4||^7.0"
},
"autoload": {
"psr-4": {
"Yii2\\Extensions\\DynamicForm\\": "src"
}
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true
}
}
}