forked from mootensai/yii2-enhanced-gii
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
74 lines (74 loc) · 1.52 KB
/
composer.json
File metadata and controls
74 lines (74 loc) · 1.52 KB
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": "inquid/yii2-enhanced-gii",
"description": "Generate Relational (hasMany, hasOne, belongsTo, & nested) Models & CRUD.",
"keywords": [
"inquid",
"relation",
"gii",
"yii2",
"yii",
"enhanced"
],
"license": "BSD-3-Clause",
"type": "yii2-extension",
"authors": [
{
"name": "Inquid",
"email": "contact@inquid.co"
},
{
"name": "Yohanes Candrajaya",
"email": "moo.tensai@gmail.com"
},
{
"name": "Jiwantoro Ndaru",
"email": "jiwanndaru@gmail.com"
}
],
"require": {
"php": ">=7.1.0",
"ext-zip": "*",
"yiisoft/yii2": "~2.0.14",
"yiisoft/yii2-faker": "~2.0.0",
"yiisoft/yii2-gii": "~2.2.2",
"faryshta/yii2-disable-submit-buttons": "*",
"inquid/yii2-relation-traits": "dev-master",
"inquid/yii2-uuid-behavior": "dev-master",
"mongosoft/yii2-mongodate-behavior": "*"
},
"require-dev": {
"yiisoft/yii2-coding-standards": "~2.0",
"phpunit/phpunit": "<9"
},
"autoload": {
"psr-4": {
"inquid\\enhancedgii\\": "src"
},
"classmap": [
"./tests/bootstrap.php"
]
},
"autoload-dev": {
"psr-4": {
"inquid\\tests\\": "tests"
},
"classmap": [
"./tests/bootstrap.php"
]
},
"extra": {
"bootstrap": "inquid\\enhancedgii\\Bootstrap",
"tests": "inquid\\tests\\Bootstrap"
},
"config": {
"fxp-asset": {
"enabled": false
}
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
]
}