forked from samdark/yiifeed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.41 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": "yiifeed/yiifeed",
"description": "yiifeed",
"keywords": ["rss", "news", "feed", "yii"],
"homepage": "http://yiifeed.com/",
"type": "project",
"license": "BSD-3-Clause",
"minimum-stability": "stable",
"require": {
"php": ">=5.4.0",
"yiisoft/yii2": "~2.0.9",
"yiisoft/yii2-bootstrap": "~2.0.6",
"yiisoft/yii2-swiftmailer": "~2.0.5",
"yiisoft/yii2-authclient": "~2.0.5",
"cebe/yii2-gravatar": "~1.1",
"baibaratsky/yii2-rollbar": "1.2.*",
"bower-asset/codemirror": "~5.9.0",
"bower-asset/codemirror-buttons": "~1.0.0"
},
"require-dev": {
"yiisoft/yii2-debug": "~2.0.6",
"yiisoft/yii2-gii": "~2.0.5"
},
"config": {
"process-timeout": 1800
},
"scripts": {
"post-create-project-cmd": [
"yii\\composer\\Installer::postCreateProject"
]
},
"extra": {
"yii\\composer\\Installer::postCreateProject": {
"setPermission": [
{
"runtime": "0777",
"web/assets": "0777",
"yii": "0755"
}
],
"generateCookieValidationKey": [
"config/web.php"
]
},
"asset-installer-paths": {
"npm-asset-library": "vendor/npm",
"bower-asset-library": "vendor/bower"
}
}
}