forked from Format-D/FormatD.Mailer.QueueAdaptor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
28 lines (28 loc) · 753 Bytes
/
composer.json
File metadata and controls
28 lines (28 loc) · 753 Bytes
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
{
"description": "Mail Queue for Neos.SwiftMailer",
"type": "neos-package",
"license": "MIT",
"name": "formatd/mailer-queueadaptor",
"require": {
"neos/flow": "*",
"formatd/mailer": "~2.0.0",
"flowpack/jobqueue-common": "^3.1 || ^3.2 || ^3.3",
"cweagans/composer-patches": "^1.7"
},
"autoload": {
"psr-4": {
"FormatD\\Mailer\\QueueAdaptor\\": "Classes/"
}
},
"extra": {
"patches": {
"neos/swiftmailer": {
"Change: Change message object to decorator pattern": "Packages/Application/FormatD.Mailer.QueueAdaptor/neos-swiftmailer.message-decorator.patch"
}
},
"composer-exit-on-patch-failure": true,
"neos": {
"package-key": "FormatD.Mailer.QueueAdaptor"
}
}
}