forked from craftcms/feed-me
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.69 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
61
{
"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.1.0",
"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": "[email protected]",
"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.1.21",
"cakephp/core": "^3.5",
"cakephp/utility": "^3.3.12",
"jakeasmith/http_build_url": "^1.0",
"nesbot/carbon": "^1.22 || ^2.10",
"league/csv": "^8.2 || ^9.0",
"guzzlehttp/guzzle": "~6.3.0",
"vlucas/phpdotenv": "^2.4",
"ralouphie/mimey": "^1.0",
"seld/jsonlint": "^1.7"
},
"require-dev": {
"codeception/codeception": "~2.3.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/"
}
}