forked from luyadev/luya-module-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
70 lines (70 loc) · 1.91 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name" : "luyadev/luya-module-admin",
"description" : "Administration core module for all LUYA admin modules",
"type" : "luya-core",
"keywords" : ["php", "luya", "module", "admin", "yii2", "yii", "administration", "angular", "ngrest", "manage", "panel"],
"license": "MIT",
"homepage" : "http://luya.io",
"authors" : [
{
"name" : "Basil Suter",
"email" : "[email protected]",
"homepage" : "https://github.com/nadar"
}
],
"support" : {
"issues" : "https://github.com/luyadev/luya-module-admin/issues"
},
"require" : {
"yiisoft/yii2-imagine": "~2.1.0",
"yiisoft/yii2-queue" : "~2.0.0",
"flowjs/flow-php-server": "^1.0"
},
"require-dev" : {
"luyadev/luya-testsuite" : "~1.0.11",
"php-coveralls/php-coveralls": "^1.0",
"twbs/bootstrap": "v4.0.0-beta",
"bower-asset/angular" : "^1.7",
"bower-asset/angular-loading-bar" : "^0.9",
"bower-asset/angularjs-datepicker" : "^2.0",
"bower-asset/ui-router" : "~0.4.0",
"bower-asset/ng-file-upload" : "~12.2.0",
"bower-asset/ng-flow" : "~2.7.0",
"bower-asset/ng-wig" : "~3.0.0",
"bower-asset/twigjs-bower": "~0.10.5",
"bower-asset/angular-filter" : "~0.5.15",
"bower-asset/bowser": "^1.9",
"bower-asset/echarts": "~3.8.5",
"bower-asset/angularjs-slider": "~6.6.0",
"unglue/client": "^1.4.1"
},
"autoload" : {
"psr-4" : {
"luya\\admin\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"admintests\\" : "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.2.x-dev"
},
"luya" : {
"bootstrap": ["\\luya\\admin\\Bootstrap"]
}
},
"config": {
"platform": {
"php": "7.0"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}