-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
36 lines (36 loc) · 1.03 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
{
"name": "openbuildings/postmark",
"description": "Swiftmailer Transport Class for Postmark",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Ivan Kerin",
"email": "[email protected]",
"role": "Author"
}
],
"require" : {
"php": "^7.1",
"lib-curl": "*",
"swiftmailer/swiftmailer": "^6"
},
"require-dev" : {
"phpunit/phpunit": "^7"
},
"autoload": {
"psr-4": {"Openbuildings\\Postmark\\": "src/"}
},
"autoload-dev": {
"psr-4": {"Openbuildings\\Postmark\\Test\\": "tests/src/"}
},
"suggest": {
"openbuildings/swiftmailer-css-inliner": "Inline the CSS of your HTML emails",
"openbuildings/swiftmailer-filter": "Whitelist or blacklist domains or emails from To, Cc and Bcc",
"openbuildings/swiftmailer-google-campaign": "Append to all email links Google UTM campaign parameters"
},
"config": {
"platform": {
"php": "7.1.8"
}
}
}