-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.05 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
{
"name": "wdmg/yii2-rss",
"description": "RSS-feed generator",
"keywords": ["yii2", "yii2-rss", "rss", "rss-feeds", "yandex-turbo", "rss", "generator", "wdmg"],
"type": "yii2-extension",
"license": "MIT",
"version": "1.1.0",
"homepage": "https://github.com/wdmg/yii2-rss",
"support": {
"source": "https://github.com/wdmg/yii2-rss",
"issues": "https://github.com/wdmg/yii2-rss/issues"
},
"authors": [
{
"name": "Alexsander Vyshnyvetskyy",
"email": "[email protected]"
},
{
"name": "W.D.M.Group, Ukraine",
"email": "[email protected]"
}
],
"require": {
"yiisoft/yii2": "^2.0.35",
"wdmg/yii2-base": "^1.2.4"
},
"minimum-stability": "dev",
"autoload": {
"psr-4": {
"wdmg\\rss\\": ""
}
},
"extra": {
"options": {
"routePrefix": "admin",
"supportModels": {
"news": "wdmg\\news\\models\\News",
"blog": "wdmg\\blog\\models\\Posts"
},
"cacheExpire": 3600,
"channelOptions": [],
"feedRoute": "/rss"
}
}
}