-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
executable file
·42 lines (42 loc) · 1.15 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
{
"name": "msp/module-notifier",
"description": "Multiple channel notifier engine for Magento 2",
"require": {
"php": "^7.0|^7.1|^7.2|^8.1|^8.2",
"magento/magento2-base": "^2.2|^2.3",
"msp/module-notifier-api": "^0"
},
"support": {
"issues": "https://github.com/magespecialist/m2-MSP_Notifier/issues"
},
"homepage": "https://github.com/magespecialist/m2-MSP_Notifier",
"keywords": [
"magento",
"notification",
"tool"
],
"suggest": {
"msp/module-notifier-event": "Event based rule manager for MSP_Notifier",
"msp/module-notifier-queue": "Asynchronous queue manager for MSP_Notifier"
},
"authors": [
{
"name": "Riccardo Tempesta",
"email": "[email protected]"
},
{
"name": "Giacomo Mirabassi",
"email": "[email protected]"
}
],
"type": "magento2-module",
"license": "OSL-3.0",
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"MSP\\Notifier\\": ""
}
}
}