-
Notifications
You must be signed in to change notification settings - Fork 139
/
composer.json
75 lines (75 loc) · 1.81 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"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",
"keywords": [
"craft",
"cms",
"craftcms",
"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/v6/",
"rss": "https://github.com/craftcms/feed-me/commits/master.atom"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.2",
"craftcms/cms": "^5.0.0-beta.2",
"cakephp/utility": "^5.0.0",
"jakeasmith/http_build_url": "^1.0",
"nesbot/carbon": "^2.10|^3.0.0",
"league/csv": "^9.0",
"seld/jsonlint": "^1.7"
},
"require-dev": {
"craftcms/ecs": "dev-main",
"craftcms/phpstan": "dev-main",
"codeception/codeception": "^5.0.11",
"codeception/module-asserts": "^3.0.0"
},
"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/"
},
"scripts": {
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix",
"phpstan": "phpstan --memory-limit=1G"
},
"config": {
"platform": {
"php": "8.2"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}