forked from phundament/app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
85 lines (85 loc) · 2.05 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
{
"name": "phundament/app",
"description": "12factor Application Template for Yii 2.0 Framework",
"keywords": [
"phundament",
"yii2",
"framework",
"application",
"template",
"boilerplate",
"vagrant",
"docker",
"fig",
"12factor",
"dotenv"
],
"homepage": "http://www.phundament.com/",
"type": "project",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Tobias Munk",
"email": "[email protected]",
"homepage": "http://www.phundament.com"
}
],
"support": {
"issues": "https://github.com/phundament/app/issues?state=open",
"source": "https://github.com/phundament/app"
},
"minimum-stability": "stable",
"require": {
"php": ">=5.4.0",
"vlucas/phpdotenv": "1.*",
"yiisoft/yii2-composer": "*",
"yiisoft/yii2": "2.0.*",
"yiisoft/yii2-bootstrap": "2.*",
"yiisoft/yii2-swiftmailer": "2.*",
"dektrium/yii2-user": "0.9.*",
"mikehaertl/php-shellcommand": "1.*",
"dmstr/yii2-app-command": "dev-master",
"dmstr/yii2-migrate-command": "*",
"dmstr/yii2-adminlte-asset": "*",
"dmstr/yii2-log": "dev-master",
"schmunk42/yii2-packaii": "dev-master",
"schmunk42/yii2-markdocs-module": "dev-master"
},
"require-dev": {
"yiisoft/yii2-debug": "2.*",
"yiisoft/yii2-gii": "2.*",
"yiisoft/yii2-faker": "2.*",
"yiisoft/yii2-coding-standards": "2.*",
"yiisoft/yii2-codeception": "2.*",
"yiisoft/yii2-apidoc": "2.*",
"schmunk42/yii2-giiant": "*"
},
"autoload": {
"psr-4": {
"console\\helpers\\": "./console/helpers"
}
},
"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
}
}