forked from vova07/yii2-start
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (47 loc) · 1.1 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
{
"name": "vova07/yii2-start",
"description": "Yii2-Start приложение.",
"keywords": ["yii2", "app", "yii2 blog", "yii2 users", "yii2 comments"],
"homepage": "http://yii2-start.find-freelancer.pro",
"type": "project",
"support": {
"issues": "https://github.com/vova07/yii2-start/issues?state=open",
"source": "https://github.com/vova07/yii2-start"
},
"authors": [
{
"name": "Vasile Crudu",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "*",
"yiisoft/yii2-bootstrap": "*",
"yiisoft/yii2-swiftmailer": "*"
},
"require-dev": {
"yiisoft/yii2-debug": "*",
"yiisoft/yii2-gii": "*"
},
"scripts": {
"post-create-project-cmd": [
"yii\\composer\\Installer::setPermission"
]
},
"config": {
"preferred-install": "dist"
},
"extra": {
"yii-install-writable": [
"backend/protected/runtime",
"backend/web/assets",
"common/data",
"console/runtime",
"console/migrations",
"frontend/protected/runtime",
"frontend/web/assets"
]
}
}