forked from craftcms/shopify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 867 Bytes
/
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
{
"name": "nmaier95/shopify-product-fetcher",
"description": "load your shopify-products into your craft3 cms instance",
"type": "craft-plugin",
"version": "2.2.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"shopify",
"fetch products",
"integrate shopify",
"product sync",
"ecommerce"
],
"license": "MIT",
"authors": [
{
"name": "niklas",
"homepage": "https://maier-niklas.de/"
}
],
"require": {
"craftcms/cms": "^3.0.0",
"guzzlehttp/guzzle": "^6.3",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"shopify\\": "src/"
}
},
"extra": {
"name": "shopify",
"handle": "shopify",
"class": "shopify\\Shopify"
}
}