-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
123 lines (123 loc) · 4.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "hiqdev/hipanel-core",
"type": "yii2-extension",
"description": "HiPanel core package",
"keywords": [
"hipanel",
"control panel",
"hosting",
"domains"
],
"homepage": "https://hipanel.com/",
"license": "BSD-3-Clause",
"support": {
"email": "[email protected]",
"source": "https://github.com/hiqdev/hipanel",
"issues": "https://github.com/hiqdev/hipanel/issues",
"wiki": "https://github.com/hiqdev/hipanel/wiki",
"forum": "http://forum.hiqdev.com/"
},
"authors": [
{
"name": "Andrii Vasyliev",
"role": "Project lead",
"email": "[email protected]",
"homepage": "http://hipanel.com/"
},
{
"name": "Dmitry Naumenko",
"role": "Lead backend developer",
"email": "[email protected]",
"homepage": "http://silverfire.me/"
},
{
"name": "Andrey Klochok",
"role": "Lead frontend developer",
"email": "[email protected]",
"homepage": "http://hiqdev.com/"
},
{
"name": "Yuriy Myronchuk",
"role": "QA Lead",
"email": "[email protected]",
"homepage": "http://hiqdev.com/"
}
],
"require": {
"php": "^7.3||^8.0",
"yiisoft/yii2": "^2.0",
"yiisoft/yii2-jui": "^2.0",
"yiisoft/yii2-debug": "dev-master",
"yiisoft/yii2-imagine": "^2.0",
"yiisoft/yii2-bootstrap": "^2.0",
"hiqdev/hisite": "dev-master",
"hiqdev/hipanel-rbac": "dev-master",
"hiqdev/hipanel-hiart": "dev-master",
"hiqdev/yii2-hiam-authclient": "dev-master",
"hiqdev/yii2-combo": "dev-master",
"hiqdev/yii2-export": "dev-master",
"hiqdev/yii2-higrid": "*@dev",
"hiqdev/yii2-language": "*@dev",
"hiqdev/yii2-collection": "*@dev",
"hiqdev/yii2-x-editable": "dev-master",
"hiqdev/yii2-pnotify": "*",
"hiqdev/yii2-daterangepicker": "dev-master",
"hiqdev/yii2-bootstrap-switch": "dev-master",
"hiqdev/yii2-asset-hipanel": "dev-master",
"hiqdev/yii2-asset-lightbox2": "^2.8",
"hiqdev/yii2-asset-select2-bootstrap3-css": "dev-master",
"hiqdev/yii2-asset-paulzi-form": "~2.4",
"hiqdev/yii2-asset-visibilityjs": "*",
"hiqdev/yii2-reminder": "dev-master",
"hiqdev/yii2-monitoring": "dev-master",
"hiqdev/yii2-maintenance": "dev-master",
"sentry/sdk": "^3.1.0",
"2amigos/yii2-date-time-picker-widget": "^1.0",
"kartik-v/yii2-widget-fileinput": "^1.0",
"kartik-v/yii2-widget-timepicker": "^1.0",
"vova07/yii2-select2-widget": "*",
"cebe/yii2-gravatar": "*",
"michelf/php-smartypants": "^1.8.0",
"stichoza/google-translate-php": "^4.1.6",
"wbraganca/yii2-dynamicform": "*@dev",
"bower-asset/less-space": "*",
"bower-asset/eonasdan-bootstrap-datetimepicker": "^4.17",
"bower-asset/components-font-awesome": "~4.6",
"bower-asset/chartjs": "~2.8.0",
"bower-asset/sticky-sidebar": "3.3.1",
"bower-asset/seiyria-bootstrap-slider": "dev-bs3",
"2amigos/yii2-chartjs-widget": "^2.0",
"2amigos/yii2-switch-widget": "~1.0",
"npm-asset/checkboxes.js": "1.2.0",
"npm-asset/ace-builds": "^1.4.2",
"npm-asset/jquery-treetable": "^3.2.0",
"psr/container": "^1.0"
},
"require-dev": {
"hiqdev/hidev": "dev-master",
"hiqdev/hidev-php": "dev-master",
"hiqdev/hidev-hiqdev": "dev-master"
},
"autoload": {
"psr-4": {
"hipanel\\": "src",
"hipanel\\tests\\": "tests"
}
},
"extra": {
"config-plugin": {
"params": "config/params.php",
"common": "config/common.php",
"console": "config/console.php",
"web": "config/web.php",
"acceptance": "config/acceptance.php"
}
},
"minimum-stability": "dev",
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}