-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
49 lines (49 loc) · 1.31 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
{
"name": "nswdpc/silverstripe-mailgun-sync",
"description": "Send messages via Mailgun and synchronise with Mailgun Events API.",
"type": "silverstripe-vendormodule",
"homepage" : "https://github.com/nswdpc/silverstripe-mailgun-sync",
"keywords": [
"silverstripe",
"mailgun",
"mime",
"email",
"mail"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "James Ellis",
"role" : "Developer"
}
],
"support" : {
"issues" : "https://github.com/nswdpc/silverstripe-mailgun-sync/issues"
},
"autoload": {
"psr-4": {
"NSWDPC\\Messaging\\Mailgun\\Tests\\": [
"tests/"
],
"NSWDPC\\Messaging\\Mailgun\\": [
"src/Controllers/",
"src/Email/",
"src/Exceptions/",
"src/Jobs/",
"src/Models/",
"src/"
]
}
},
"require": {
"symbiote/silverstripe-queuedjobs": "^4.9",
"mailgun/mailgun-php": "^3",
"kriswallsmith/buzz" : "^1.1",
"nyholm/psr7" : "^1.3",
"silverstripe/framework" : "^4.10"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^3"
}
}