-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
45 lines (45 loc) · 1.39 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": "kristiansp/refeed-me",
"description": "Refeed Me is a Craft CMS plugin building on the first-party Feed Me plugin. It let's you manage feeds as groups that can be run in batches.",
"type": "craft-plugin",
"version": "0.9.0-dev",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"refeed me"
],
"support": {
"docs": "https://github.com/kristiansp/refeed-me/blob/master/README.md",
"issues": "https://github.com/kristiansp/refeed-me/issues"
},
"license": "MIT",
"authors": [
{
"name": "Kristian S. P.",
"homepage": "https://github.com/kristiansp"
}
],
"require": {
"craftcms/cms": "^3.0.0",
"craftcms/feed-me": "^4.2.0"
},
"autoload": {
"psr-4": {
"kristiansp\\refeedme\\": "src/"
}
},
"extra": {
"name": "Refeed Me",
"handle": "refeed-me",
"developer": "Kristian S. P.",
"developerUrl": "https://github.com/kristiansp",
"documentationUrl": "https://github.com/kristiansp/refeed-me/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/kristiansp/refeed-me/master/CHANGELOG.md",
"components": {
"feeds": "kristiansp\\refeedme\\services\\Feeds"
},
"class": "kristiansp\\refeedme\\RefeedMe"
}
}