-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
41 lines (41 loc) · 1004 Bytes
/
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
{
"name": "wdmg/yii2-options",
"description": "Storage application options (settings) in the database",
"keywords": ["yii2", "yii2-options", "settings", "options", "wdmg"],
"type": "yii2-extension",
"license": "MIT",
"version": "1.7.0",
"homepage": "https://github.com/wdmg/yii2-options",
"support": {
"source": "https://github.com/wdmg/yii2-options",
"issues": "https://github.com/wdmg/yii2-options/issues"
},
"authors": [
{
"name": "Alexsander Vyshnyvetskyy",
"email": "[email protected]"
},
{
"name": "W.D.M.Group, Ukraine",
"email": "[email protected]"
}
],
"require": {
"yiisoft/yii2": "^2.0.35",
"wdmg/yii2-base": "^1.3.0",
"wdmg/yii2-selectinput": "^1.0.9",
"wdmg/yii2-helpers": "^1.4.1"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"wdmg\\options\\": ""
}
},
"extra": {
"options": {
"routePrefix": "admin",
"autoloadOptions": true
}
}
}