-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
40 lines (40 loc) · 1.15 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
{
"name": "czepter/cake-mailjet",
"description": "Mailjet plugin for CakePHP. Allows sending emails via Mailjet by using the provided Mailjet SDK.",
"type": "cakephp-plugin",
"keywords": ["cakephp", "mailer", "mailertransport", "mailjet"],
"homepage": "https://github.com/czepter/cake-mailjet",
"license": "MIT",
"require": {
"cakephp/cakephp": "^3.7",
"mailjet/mailjet-apiv3-php": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "^5.7.14|^6.0"
},
"autoload": {
"psr-4": {
"CakeMailjet\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CakeMailjet\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/"
}
},
"authors": [{
"name": "Christian Zepter",
"homepage": "https://czepter.de",
"role": "Maintainer"
},
{
"name": "Contributors",
"homepage": "https://github.com/czepter/cake-mailjet/graphs/contributors",
"role": "Contributor"
}
],
"support": {
"source": "https://github.com/czepter/cake-mailjet"
}
}