-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 825 Bytes
/
Copy pathcomposer.json
File metadata and controls
35 lines (35 loc) · 825 Bytes
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
{
"name": "bertoost/craft-mailjet",
"description": "Craft CMS plugin for adding Mailjet mail adapter.",
"type": "craft-plugin",
"keywords": [
"craft",
"craftcms",
"plugin",
"craftcms plugin",
"mailjet",
"mailer",
"adapter"
],
"homepage": "https://github.com/bertoost/Craft-Mailjet",
"license": "MIT",
"require": {
"php": "^8.2",
"craftcms/cms": "^5.0",
"mailjet/mailjet-apiv3-php": "^1.6",
"symfony/mailjet-mailer": "^v7.0"
},
"autoload": {
"psr-4": {
"bertoost\\mailjet\\": "src/"
}
},
"extra": {
"name": "Mailjet",
"handle": "mailjet",
"hasCpSettings": true,
"developer": "Bert Oost",
"developerUrl": "https://bertoost.com",
"documentationUrl": "https://github.com/bertoost/Craft-Mailjet/blob/master/README.md"
}
}