-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
composer.json
43 lines (43 loc) · 1.13 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
{
"name": "yiisoft/yii2-shell",
"description": "The interactive shell extension for Yii framework",
"keywords": [
"yii2",
"shell"
],
"type": "yii2-extension",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/yiisoft/yii2-shell/issues",
"forum": "https://www.yiiframework.com/forum/",
"wiki": "https://www.yiiframework.com/wiki/",
"irc": "ircs://irc.libera.chat:6697/yii",
"source": "https://github.com/yiisoft/yii2-shell"
},
"authors": [
{
"name": "Daniel Gomez Pan",
"email": "pana_1990@hotmail.com"
},
{
"name": "Sascha Vincent Kurowski",
"email": "svkurowski@gmail.com"
}
],
"require": {
"yiisoft/yii2": "~2.0.0",
"psy/psysh": "~0.9.3|~0.10.3|^0.11.0",
"symfony/var-dumper": "~2.7|~3.0|~4.0|~5.0"
},
"autoload": {
"psr-4": {
"yii\\shell\\": ""
}
},
"extra": {
"bootstrap": "yii\\shell\\Bootstrap",
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}