-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
executable file
·33 lines (33 loc) · 1005 Bytes
/
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
{
"name" : "milkyway-multimedia/ss-send-this",
"description": "Mailer for Silverstripe that supports Mandrill, SMTP, Amazon SES and PHP Mail, with logging and tracking",
"type" : "silverstripe-module",
"keywords" : [
"silverstripe",
"email",
"mailer"
],
"license" : "MIT",
"authors" : [
{
"name" : "Mellisa Hankins",
"email": "mell@milkywaymultimedia.com.au"
}
],
"require" : {
"php" : ">=5.4.0",
"silverstripe/framework" : "~3.2",
"phpmailer/phpmailer" : "~5.2.14",
"guzzlehttp/guzzle" : "~6",
"milkyway-multimedia/ss-behaviours" : "~0.2",
"milkyway-multimedia/ss-mwm-core" : "~0.3",
"milkyway-multimedia/ss-mwm-env" : "~0.3",
"milkyway-multimedia/ss-eventful" : "~0.2"
},
"extra" : {
"installer-name": "send-this",
"branch-alias" : {
"dev-master": "0.2.x-dev"
}
}
}