forked from manelizzard/flarum-notify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 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
45
46
47
48
49
{
"name": "manelizzard/flarum-ext-notify",
"description": "Get notified about forum activity in Slack, Hipchat, Gitter or Telegram.",
"type": "flarum-extension",
"license": "MIT",
"require": {
"flarum/core": "^0.1.0-beta.8"
},
"suggest": {
"cleentfaar/slack": "Slack support",
"gorkalaucirica/hipchat-v2-api-client": "HipChat support",
"guzzlehttp/guzzle": "Gitter support",
"longman/telegram-bot": "Telegram support"
},
"conflict": {
"cleentfaar/slack": "< 0.17 || >= 0.18",
"gorkalaucirica/hipchat-v2-api-client": "< 1 || >= 2",
"guzzlehttp/guzzle": "< 6.1 || >= 7.0",
"longman/telegram-bot": "< 0.41.0 || >= 0.42"
},
"authors": [
{
"name": "Moay",
"email": "[email protected]"
},
{
"name": "Manel",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Moay\\Notify\\": "src/"
}
},
"extra": {
"flarum-extension": {
"title": "Notify",
"icon": {
"name": "fas fa-bell",
"backgroundColor": "#640049",
"backgroundSize": "100%",
"backgroundRepeat": "no-repeat",
"backgroundPosition": "center",
"color": "#fff"
}
}
}
}