-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.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": "by/guest-entries-notification",
"description": "A plugin to get notification when an entry is created.",
"type": "craft-plugin",
"version": "2.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"guest entries notification"
],
"support": {
"docs": "https://github.com/bhashkar007/guest-entries-notification/blob/master/README.md",
"issues": "https://github.com/bhashkar007/guest-entries-notification/issues"
},
"license": "MIT",
"authors": [
{
"name": "Bhashkar Yadav",
"homepage": "https://360adaptive.com"
}
],
"require": {
"craftcms/cms": "^4.0.0",
"craftcms/guest-entries": "^3.0.0"
},
"autoload": {
"psr-4": {
"by\\guestentriesnotification\\": "src/"
}
},
"extra": {
"name": "Guest Entries Notification",
"handle": "guest-entries-notification",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/bhashkar007/guest-entries-notification/master/CHANGELOG.md",
"components": {
"guestEntriesNotificationService": "by\\guestentriesnotification\\services\\GuestEntriesNotificationService"
},
"class": "by\\guestentriesnotification\\GuestEntriesNotification"
}
}