This repository has been archived by the owner on Mar 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 129
/
composer.json
70 lines (70 loc) · 1.66 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
{
"name": "phundament/app",
"description": "12factor Application Template for Yii 2.0 Framework",
"keywords": [
"phundament",
"yii2",
"app",
"framework",
"application",
"template",
"boilerplate",
"vagrant",
"docker",
"docker-compose",
"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": {
"dmstr/yii2-app-command": "dev-master",
"dmstr/yii2-cms-metapackage": "dev-master",
"vlucas/phpdotenv": "2.*",
"yiisoft/yii2": "2.0.*",
"yiisoft/yii2-composer": "2.0.*"
},
"require-dev": {
"dmstr/yii2-cms-dev-metapackage": "dev-master",
"dmstr/yii2-libs-metapackage": "dev-master",
"dmstr/yii2-yaml-converter-command": "dev-master",
"yiisoft/yii2-debug": "@stable",
"schmunk42/yii2-giiant": "dev-master#d40733b"
},
"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
}
}