-
Notifications
You must be signed in to change notification settings - Fork 127
/
composer.json
37 lines (37 loc) · 1.01 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": "unclead/yii2-multiple-input",
"description": "Widget for handle multiple inputs for an attribute of Yii2 framework model",
"keywords": [
"yii2",
"yii2 multiple input",
"yii2 array input",
"yii2 multiple field",
"yii2 tabular input"
],
"type": "yii2-extension",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/unclead/yii2-multiple-input/issues?state=open",
"source": "https://github.com/unclead/yii2-multiple-input"
},
"authors": [
{
"name": "Eugene Tupikov",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": ">=2.0.38"
},
"require-dev": {
"phpunit/phpunit": "5.7.*"
},
"autoload": {
"psr-4": {
"unclead\\multipleinput\\examples\\": "examples/",
"unclead\\multipleinput\\": "src/",
"unclead\\multipleinput\\tests\\": "tests/"
}
}
}