forked from craftcms/feed-me
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.6 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
{
"name": "craftcms/feed-me",
"description": "Import content from XML, RSS, CSV or JSON feeds into entries, categories, Craft Commerce products, and more.",
"type": "craft-plugin",
"version": "4.3.7",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"feed me"
],
"license": "proprietary",
"authors": [
{
"name": "Pixel & Tonic",
"homepage": "https://pixelandtonic.com/"
},
{
"name": "Verbb",
"homepage": "https://verbb.io"
}
],
"support": {
"email": "support@craftcms.com",
"issues": "https://github.com/craftcms/feed-me/issues?state=open",
"source": "https://github.com/craftcms/feed-me",
"docs": "https://docs.craftcms.com/feed-me/v4/",
"rss": "https://github.com/craftcms/feed-me/commits/master.atom"
},
"require": {
"craftcms/cms": "^3.5.0",
"cakephp/utility": "^3.3.12",
"jakeasmith/http_build_url": "^1.0",
"nesbot/carbon": "^1.22 || ^2.10",
"league/csv": "^8.2 || ^9.0",
"seld/jsonlint": "^1.7"
},
"require-dev": {
"codeception/codeception": "^4.0.0",
"codeception/module-asserts": "^1.3"
},
"autoload": {
"psr-4": {
"craft\\feedme\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"craft\\feedme\\tests\\": "tests/"
}
},
"extra": {
"name": "Feed Me",
"handle": "feed-me",
"documentationUrl": "https://docs.craftcms.com/feed-me/v4/"
}
}