-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1.03 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
{
"name": "bkwld/craft-importable-shopify-feeds",
"description": "A Craft plugin that maps Shopify data into feeds that are more easily consumed by FeedMe.",
"type": "craft-plugin",
"license": "MIT",
"authors": [
{
"name": "Bukwild",
"homepage": "https://www.bukwild.com"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/bkwld/craft-importable-shopify-feeds/issues?state=open",
"source": "https://github.com/bkwld/craft-importable-shopify-feeds",
"docs": "https://github.com/bkwld/craft-importable-shopify-feeds/blob/master/README.md"
},
"require": {
"guzzlehttp/guzzle": "^7.4",
"craftcms/cms": "^3.0 || ^4.0",
"illuminate/collections": "^8 || ^9"
},
"autoload": {
"psr-4": {
"Bkwld\\ImportableShopifyFeeds\\": "src/"
}
},
"extra": {
"name": "Importable Shopify Feeds",
"handle": "importable-shopify-feeds"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"craftcms/rector": "dev-main"
}
}