-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
30 lines (30 loc) · 841 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
{
"name": "dhritimanrick/mailchimp-store",
"description": "Laravel Mailchimp Store",
"keywords": ["laravel","ecommerce","mailchimp","store","e-com","email","cart","product","customer","orders"],
"license": "MIT",
"authors": [
{
"name": "Dhritiman Nath",
"email": "dhritiman.nath@conversionbug.com"
}
],
"require": {
"drewm/mailchimp-api": "^2.5"
},
"autoload": {
"psr-4": {
"Dhritiman\\MailchimpStore\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Dhritiman\\MailchimpStore\\Providers\\MailchimpStoreServiceProvider"
],
"aliases": {
"MailChimpStore": "Dhritiman\\MailchimpStore\\Facades\\MailChimpStore"
}
}
}
}