forked from Sammaye/yii2-advanced-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (51 loc) · 1.26 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
{
"name": "sammaye/yii2-advanced-template",
"description": "A template for awesomeness.",
"keywords": ["yii2", "framework", "advanced", "application template"],
"homepage": "http://www.sammaye.wordpress.com/",
"type": "project",
"license": "BSD-3-Clause",
"support": {
"issues": "https://github.com/Sammaye/yii2-test/issues",
"source": "https://github.com/Sammaye/yii2-test"
},
"minimum-stability": "dev",
"require": {
"php": ">=5.4.0",
"fxp/composer-asset-plugin": "1.0.*@dev",
"yiisoft/yii2": "*",
"yiisoft/yii2-bootstrap": "*",
"yiisoft/yii2-swiftmailer": "*",
"yiisoft/yii2-mongodb": "*",
"bower-asset/jquery": "~1.11@stable",
"bower-asset/jquery-ui": "~1.11@stable",
"yiisoft/yii2-jui": "*",
"yiisoft/yii2-imagine": "*"
},
"require-dev": {
"yiisoft/yii2-codeception": "*",
"yiisoft/yii2-debug": "*",
"yiisoft/yii2-gii": "*",
"yiisoft/yii2-faker": "*"
},
"scripts": {
"post-create-project-cmd": [
"yii\\composer\\Installer::setPermission"
]
},
"config": {
"process-timeout": 1800
},
"extra": {
"writable": [
"backend/runtime",
"backend/web/assets",
"frontend/runtime",
"frontend/web/assets"
],
"asset-installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
}
}
}