-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
44 lines (44 loc) · 1.09 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": "doublesecretagency/craft-notifier",
"description": "Send custom Twig messages when Craft events are triggered.",
"type": "craft-plugin",
"version": "2.0.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"notify",
"notifications",
"notifier",
"message",
"email",
"text",
"sms"
],
"support": {
"docs": "https://plugins.doublesecretagency.com/notifier",
"issues": "https://github.com/doublesecretagency/craft-notifier/issues"
},
"license": "proprietary",
"authors": [
{
"name": "Double Secret Agency",
"homepage": "https://plugins.doublesecretagency.com"
}
],
"require": {
"craftcms/cms": "^5.0.0-beta",
"twilio/sdk": "^7.14"
},
"autoload": {
"psr-4": {
"doublesecretagency\\notifier\\": "src/"
}
},
"extra": {
"name": "Notifier",
"handle": "notifier",
"class": "doublesecretagency\\notifier\\NotifierPlugin"
}
}