forked from yiisoft/yii-gii
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
74 lines (74 loc) · 1.99 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
{
"name": "yiisoft/yii-gii",
"type": "library",
"description": "Yii Framework Code Generator Extension",
"keywords": [
"yii",
"gii",
"code generator"
],
"license": "BSD-3-Clause",
"support": {
"source": "https://github.com/yiisoft/yii-gii",
"issues": "https://github.com/yiisoft/yii-gii/issues",
"forum": "http://www.yiiframework.com/forum/",
"wiki": "http://www.yiiframework.com/wiki/",
"irc": "irc://irc.freenode.net/yii"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.4",
"phpspec/php-diff": "^1.1.0",
"yiisoft/strings": "^3.0@dev",
"yiisoft/arrays": "^3.0@dev",
"yiisoft/aliases": "^1.0",
"yiisoft/http": "^1.0@dev",
"yiisoft/view": "^3.0@dev",
"yiisoft/validator": "^3.0@dev",
"yiisoft/json": "^3.0@dev",
"yiisoft/yii-console": "^3.0@dev",
"yiisoft/var-dumper": "^3.0@dev"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"yiisoft/composer-config-plugin": "^1.0@dev",
"yiisoft/di": "^3.0@dev",
"yiisoft/event-dispatcher": "^3.0@dev",
"yiisoft/files": "^3.0@dev",
"yiisoft/log": "^3.0@dev"
},
"autoload": {
"psr-4": {
"Yiisoft\\Yii\\Gii\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Yiisoft\\Yii\\Gii\\Tests\\": "tests"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
},
"config-plugin": {
"params": "config/params.php",
"console": [
"$common",
"config/console.php"
],
"common": "config/common.php",
"tests": "config/tests.php"
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"config": {
"sort-packages": true
}
}