forked from craftcms/feed-me
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.7 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
54
55
56
57
58
59
60
{
"name": "verbb/feed-me",
"description": "Import content from XML, RSS, CSV or JSON feeds into Entries, Categories, Craft Commerce Products (and variants), and more.",
"type": "craft-plugin",
"version": "3.0.0-beta.16",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"feed me"
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/verbb/feed-me/issues?state=open",
"source": "https://github.com/verbb/feed-me",
"docs": "https://github.com/verbb/feed-me",
"rss": "https://github.com/verbb/feed-me/commits/v2.atom"
},
"license": "proprietary",
"authors": [
{
"name": "Verbb",
"homepage": "https://verbb.io"
}
],
"require": {
"craftcms/cms": "^3.0.0-RC15",
"cakephp/core": "^3.5",
"cakephp/utility": "^3.3.12",
"jakeasmith/http_build_url": "^1.0",
"nesbot/carbon": "^1.22",
"league/csv": "^8.2",
"guzzlehttp/guzzle": "~6.3.0",
"vlucas/phpdotenv": "^2.4",
"ralouphie/mimey": "^1.0"
},
"require-dev": {
"codeception/codeception": "~2.3.3"
},
"autoload": {
"psr-4": {
"verbb\\feedme\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"verbb\\feedme\\tests\\": "tests/"
}
},
"extra": {
"name": "Feed Me",
"handle": "feed-me",
"schemaVersion": "1.0.0",
"hasCpSettings": true,
"hasCpSection": true,
"changelogUrl": "https://raw.githubusercontent.com/verbb/feed-me/craft-3/CHANGELOG.md",
"class": "verbb\\feedme\\FeedMe"
}
}