-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
48 lines (48 loc) · 1.52 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
{
"name": "nerds-and-company/craft3-mail-retry",
"description": "Retry mails in background when they fail",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"mail retry"
],
"support": {
"docs": "https://github.com/nerds-and-company/craft3-mail-retry/blob/master/README.md",
"issues": "https://github.com/nerds-and-company/craft3-mail-retry/issues"
},
"license": "MIT",
"authors": [
{
"name": "Nerds & Company",
"homepage": "https://nerds.company"
}
],
"require": {
"craftcms/cms": "^3.0.0"
},
"autoload": {
"psr-4": {
"nerdsandcompany\\mailretry\\": "src/",
"nerdsandcompany\\mailretry\\tests\\": "src/tests/unit/"
}
},
"extra": {
"name": "Mail Retry",
"handle": "mail-retry",
"developer": "Nerds and Company",
"developerUrl": "https://github.com/nerds-and-company/craft3-mail-retry",
"documentationUrl": "https://github.com/nerds-and-company/craft3-mail-retry/blob/master/README.md",
"changelogUrl": "https://github.com/nerds-and-company/craft3-mail-retry/blob/master/CHANGELOG.md",
"class": "nerdsandcompany\\mailretry\\MailRetry"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"codeception/codeception": "^4.1",
"codeception/module-asserts": "^1.2",
"codeception/module-yii2": "^1.1",
"phpmd/phpmd": "^2.8"
}
}