-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathcomposer.json
103 lines (103 loc) · 2.69 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"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": {
"php": ">=8.0",
"luyadev/luya-core": "^2.2",
"yiisoft/yii2-imagine": "^2.1",
"yiisoft/yii2-queue": "^2.3.6",
"flowjs/flow-php-server": "^1.0",
"bizley/jwt": "^3.3",
"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",
"friendsofphp/php-cs-fixer": "^3.2",
"phpstan/phpstan": "^1.7",
"rector/rector": "^0.14.2"
},
"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
},
"platform": {
"php": "8.0"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"luyadev/luya-composer": true
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"scripts": {
"phpstan": "vendor/bin/phpstan -v",
"phpcsfixer": "vendor/bin/php-cs-fixer fix",
"rector": "vendor/bin/rector"
}
}