-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
43 lines (43 loc) · 1.12 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
{
"name": "ether/mailchimp-commerce",
"description": "Mailchimp integration with Craft Commerce",
"version": "1.2.4",
"type": "craft-plugin",
"keywords": [
"mailchimp",
"commerce",
"abandoned",
"carts"
],
"license": "proprietary",
"authors": [
{
"name": "Ether",
"homepage": "https://ethercreative.co.uk"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/ethercreative/mailchimp-commerce/issues?state=open",
"source": "https://github.com/ethercreative/mailchimp-commerce",
"docs": "https://github.com/ethercreative/mailchimp-commerce/blob/v1/README.md"
},
"require": {
"craftcms/cms": "^3.1.0",
"craftcms/commerce": "^3.0.0",
"guzzlehttp/guzzle": "^6.3.3|^7.3",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"ether\\mc\\": "src/"
}
},
"extra": {
"handle": "mailchimp-commerce",
"name": "Mailchimp Commerce",
"documentationUrl": "https://github.com/ethercreative/mailchimp-commerce/blob/master/README.md",
"class": "ether\\mc\\MailchimpCommerce",
"schemaVersion": "1.1.12"
}
}