forked from perfectwebteam/craft-mailchimp-transactional
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·54 lines (54 loc) · 1.45 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
{
"name": "perfectwebteam/craft-mailchimp-transactional",
"description": "Mailchimp Transactional mailer adapter for Craft CMS.",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"mailchimp transactional",
"mailchimp",
"transactional",
"mandrill"
],
"support": {
"docs": "https://github.com/perfectwebteam/craft-mailchimp-transactional/blob/main/README.md",
"source": "https://github.com/perfectwebteam/craft-mailchimp-transactional",
"issues": "https://github.com/perfectwebteam/craft-mailchimp-transactional/issues"
},
"license": "MIT",
"authors": [
{
"name": "Perfect Web Team",
"homepage": "https://perfectwebteam.com"
}
],
"require": {
"php": "^8.0.2",
"craftcms/cms": "^4.0|^5.0"
},
"autoload": {
"psr-4": {
"perfectwebteam\\mailchimptransactional\\": "src/"
}
},
"extra": {
"name": "Mailchimp Transactional",
"handle": "mailchimp-transactional",
"developer": "Perfect Web Team",
"developerUrl": "https://perfectwebteam.com",
"documentationUrl": "https://github.com/perfectwebteam/craft-mailchimp-transactional/blob/main/README.md",
"changelogUrl": "https://raw.githubusercontent.com/perfectwebteam/craft-mailchimp-transactional/main/CHANGELOG.md",
"class": "perfectwebteam\\mailchimptransactional\\MailchimpTransactional"
},
"config": {
"platform": {
"php": "8.2"
},
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}