-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
57 lines (57 loc) · 1.49 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
{
"name": "frostealth/yii2-api-basic",
"description": "Yii 2 Basic API Template",
"keywords": ["yii2", "framework", "basic", "project template", "api"],
"type": "project",
"license": "MIT",
"minimum-stability": "dev",
"authors": [
{
"name": "Ivan Kudinov",
"email": "[email protected]",
"homepage": "http://frostealth.ru"
}
],
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": ">=2.0.7",
"yiisoft/yii2-swiftmailer": "*",
"vlucas/phpdotenv": "~2.2"
},
"require-dev": {
"yiisoft/yii2-codeception": "*",
"yiisoft/yii2-faker": "*",
"yiisoft/yii2-gii": "*"
},
"config": {
"process-timeout": 1800
},
"autoload": {
"psr-4": {
"bootstrap\\": "bootstrap/"
}
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
],
"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"
}
}
}