-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
67 lines (67 loc) · 1.35 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
{
"name": "wdmg/yii2-terminal",
"description": "Terminal",
"keywords": ["yii2", "yii2-terminal", "terminal", "webshell", "wdmg"],
"type": "yii2-extension",
"license": "MIT",
"version": "1.3.1",
"homepage": "https://github.com/wdmg/yii2-terminal",
"support": {
"source": "https://github.com/wdmg/yii2-terminal",
"issues": "https://github.com/wdmg/yii2-terminal/issues"
},
"authors": [
{
"name": "Alexsander Vyshnyvetskyy",
"email": "[email protected]"
},
{
"name": "W.D.M.Group, Ukraine",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6.0",
"yiisoft/yii2": "^2.0.40",
"wdmg/yii2-base": "^1.3.0",
"bower-asset/jquery-ui": "^1.12",
"bower-asset/jquery.terminal": "^2.6.3"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"wdmg\\terminal\\": ""
}
},
"extra": {
"options": {
"routePrefix": "admin",
"allowCLI": false,
"supportCLI": [
"php",
"mysql",
"curl",
"tar",
"gzip",
"lzma",
"ls",
"mkdir",
"cat",
"cd",
"pwd",
"touch",
"less",
"head",
"tail",
"rm",
"rmdir",
"history",
"cp",
"mv",
"find",
"quota",
"scp"
]
}
}
}