-
Notifications
You must be signed in to change notification settings - Fork 55
/
composer.json
88 lines (88 loc) · 2.18 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"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": "git@nadar.io",
"homepage": "https://github.com/nadar"
}
],
"support": {
"issues": "https://github.com/luyadev/luya-module-admin/issues"
},
"require": {
"luyadev/luya-core": "^2.0",
"yiisoft/yii2-imagine": "^2.1",
"yiisoft/yii2-queue": "^2.0",
"flowjs/flow-php-server": "^1.0",
"sizeg/yii2-jwt": "^1.2",
"whichbrowser/parser": "^2.0",
"robthree/twofactorauth": "^1.7"
},
"require-dev": {
"luyadev/luya-testsuite": "^2.0",
"twbs/bootstrap": "^4.5",
"bower-asset/angular": "^1.8.2",
"bower-asset/angular-loading-bar": "0.9.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": "^5.0",
"bower-asset/ui-cropper": "^1.0",
"unglue/client": "^1.5",
"cebe/php-openapi": "^1.4"
},
"suggest": {
"cebe/php-openapi": "Is required in order to generate the OpenAPI File."
},
"autoload": {
"psr-4": {
"luya\\admin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"admintests\\": "tests/",
"luya\\admin\\tests\\": "tests/"
}
},
"extra": {
"luya": {
"bootstrap": [
"\\luya\\admin\\Bootstrap"
]
}
},
"config": {
"fxp-asset": {
"enabled": false
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}