-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
112 lines (112 loc) · 2.94 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
{
"name": "neam/dna-code-generator",
"description": "Code generator for generating various parts of a project using the [DNA project base](http://neamlabs.com/dna-project-base/)",
"keywords": [
"phundament",
"yii2",
"app",
"framework",
"application",
"template",
"boilerplate",
"vagrant",
"docker",
"fig",
"12factor",
"dotenv"
],
"homepage": "https://github.com/neam/dna-code-generator",
"type": "project",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Fredrik Wollsén",
"email": "[email protected]",
"homepage": "http://neamlabs.com"
},
{
"name": "Tobias Munk",
"email": "[email protected]",
"homepage": "http://www.phundament.com"
}
],
"support": {
"issues": "https://github.com/neam/dna-code-generator/issues?state=open",
"source": "https://github.com/neam/dna-code-generator"
},
"repositories": [
{
"type": "vcs",
"url": "[email protected]:motin/yii2-yii-bridge.git"
},
{
"type": "vcs",
"url": "[email protected]:motin/yii2-giiant.git"
},
{
"type": "vcs",
"url": "[email protected]:neam/gii2-content-model-metadata-generators.git"
},
{
"type": "vcs",
"url": "[email protected]:neam/gii2-dna-project-base-model-generators.git"
},
{
"type": "vcs",
"url": "[email protected]:neam/gii2-restful-api-generators.git"
},
{
"type": "vcs",
"url": "[email protected]:neam/gii2-workflow-ui-generators.git"
},
{
"type": "vcs",
"url": "[email protected]:neam/gii2-file-registry-generators.git"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.2.0",
"dmstr/yii2-log": "@stable",
"mikehaertl/php-shellcommand": "1.*",
"vlucas/phpdotenv": "1.1.*",
"yidas/yii2-composer-bower-skip": "~2.0.13",
"yiisoft/yii2": "~2.0.13"
},
"require-dev": {
"yiisoft/yii2-apidoc": "2.*",
"yiisoft/yii2-coding-standards": "2.*",
"yiisoft/yii2-debug": "2.*",
"slavcodev/yii2-yii-bridge": "dev-added-console-support@dev",
"neam/gii2-content-model-metadata-generators": "dev-develop@dev",
"neam/gii2-dna-project-base-model-generators": "dev-develop@dev",
"neam/gii2-restful-api-generators": "dev-develop@dev",
"neam/gii2-workflow-ui-generators": "dev-develop@dev",
"neam/gii2-file-registry-generators": "dev-develop@dev",
"yiisoft/yii2-gii": "2.*",
"schmunk42/yii2-giiant": "dev-dna-code-generator@dev"
},
"scripts": {
"post-create-project-cmd": [
"yii\\composer\\Installer::postCreateProject"
]
},
"extra": {
"yii\\composer\\Installer::postCreateProject": {
"setPermission": [
{
"runtime": "0777",
"web/assets": "0777",
"yii": "0755"
}
]
},
"asset-installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
}
},
"config": {
"process-timeout": 1800
}
}