-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.38 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
{
"name": "team23/module-email-attachments",
"description": "Attach different files to transaction mails",
"type": "magento2-component",
"version": "2.2.2",
"license": ["BSD-3-Clause"],
"authors": [
{
"name": "Team23 GmbH",
"email": "info@team23.de",
"homepage": "https://www.team23.de"
}
],
"minimum-stability": "stable",
"prefer-stable": true,
"require": {
"php": "^8.1",
"laminas/laminas-mime": "^2.12",
"magento/framework": "^103.0",
"magento/module-backend": "^102.0",
"magento/module-config": "^101.2",
"magento/module-sales": "^103.0",
"magento/module-store": "^101.1",
"psr/log": "^1.0||^2.0||^3.0",
"team23/module-core": "^1.0"
},
"keywords": [
"Magento 2",
"E-Mail",
"Attachments"
],
"autoload": {
"files": [
"src/module-email-attachments/registration.php",
"src/module-email-attachments-admin-ui/registration.php",
"src/module-email-attachments-api/registration.php"
],
"psr-4": {
"Team23\\EmailAttachments\\": "src/module-email-attachments",
"Team23\\EmailAttachmentsAdminUi\\": "src/module-email-attachments-admin-ui",
"Team23\\EmailAttachmentsApi\\": "src/module-email-attachments-api"
}
}
}