-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
36 lines (36 loc) · 995 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
{
"name": "getgrav/grav-plugin-feed",
"type": "grav-plugin",
"description": "Feed plugin for Grav CMS",
"keywords": ["feed", "plugin"],
"homepage": "https://github.com/getgrav/grav-plugin-feed",
"license": "MIT",
"authors": [
{
"name": "Team Grav",
"email": "[email protected]",
"homepage": "https://getgrav.org",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/getgrav/grav-plugin-feed/issues",
"irc": "https://chat.getgrav.org",
"forum": "https://getgrav.org/forum",
"docs": "https://github.com/getgrav/grav-plugin-feed/blob/master/README.md"
},
"autoload": {
"classmap": [
"feed.php"
]
},
"config": {
"platform": {
"php": "7.1.3"
}
},
"scripts": {
"test": "vendor/bin/codecept run unit",
"test-windows": "vendor\\bin\\codecept run unit"
}
}