-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
40 lines (40 loc) · 926 Bytes
/
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
{
"name": "dektrium/yii2-app-skeleton",
"description": "Yii2 application template",
"type": "project",
"keywords": ["dektrium", "yii2", "yii2-application-template", "application template"],
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Dmitry Erofeev",
"email": "[email protected]",
"homepage": "https://dmeroff.me",
"role": "Developer"
}
],
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "^2.0.10",
"yiisoft/yii2-bootstrap": "^2.0",
"yiisoft/yii2-swiftmailer": "^2.0",
"vlucas/phpdotenv": "^2.4",
"dektrium/yii2-user": "^0.9.9"
},
"require-dev": {
"yiisoft/yii2-debug": "^2.0",
"yiisoft/yii2-gii": "^2.0"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"scripts": {
"post-install-cmd": [
"php yii init"
]
}
}