This repository has been archived by the owner on Jul 5, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
48 lines (48 loc) · 1.51 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
45
46
47
48
{
"name": "zikula/intercom-module",
"version": "4.0.0",
"description": "Provides a private messaging system with an individual mailbox for each user, incorporating integration with the user account panel and with various other modules and blocks.",
"type": "zikula-module",
"license": "LGPL-3.0+",
"authors": [{
"name": "Zikula Development Team",
"homepage": "http://zikula.org"
}
],
"autoload": {
"psr-4": {
"Zikula\\IntercomModule\\": ""
}
},
"require": {
"php": ">5.3.3"
},
"suggest": {
"ContactList:>1.0.0": "Contact list allows to organize users in contacts",
"BBCode:>3.0.0": "BBCode allows bracket-tag markup in post text.",
"BBSmile:>1.0.0": "BBSmile allows addition of smilies to post text."
},
"extra": {
"zikula": {
"core-compatibility": ">=1.5.0",
"class": "Zikula\\IntercomModule\\ZikulaIntercomModule",
"displayname": "InterCom",
"url": "messages",
"oldnames": [
"Messages",
"InterCom"
],
"capabilities": {
"user": {
"route": "zikulaintercommodule_messages_getmessages"
},
"admin": {
"route": "zikulaintercommodule_admin_status"
}
},
"securityschema": {
"ZikulaIntercomModule::": "::"
}
}
}
}