-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
36 lines (36 loc) · 1.24 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": "fooman/emailattachments-implementation-m2",
"license": "OSL-3.0",
"description": "Automatically attach pdf and terms and conditions documents to outgoing sales emails.",
"type": "magento2-module",
"version": "107.4.1",
"autoload": {
"psr-4": {
"Fooman\\EmailAttachments\\": "src/"
},
"files": [
"src/registration.php"
]
},
"require": {
"php": "~7.1.0||~7.2.0||~7.3.0||~7.4.0||~8.0.0||~8.1.0||~8.2.0||~8.3.0",
"laminas/laminas-mime": "^2.5",
"magento/framework": "^102.0.5 || ^103.0.0",
"magento/module-backend": "^101.0.0 || ^102.0.0",
"magento/module-checkout-agreements": "^100.0.2",
"magento/module-email": "^101.0.3",
"magento/module-sales": "^102.0.0 || ^103.0.0"
},
"require-dev": {
"fooman/testing-and-quality-tools": "^1.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"suggest": {
"fooman/printorderpdf-m2": "Allows attaching the order confirmation pdf to the order confirmation email",
"fooman/pdfcustomiser-m2": "Allows to easily customise the sales pdfs while also reducing file sizes "
},
"config": {
"sort-packages": true
}
}