forked from rootslinux/phpbb-discord-notifications
-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
46 lines (46 loc) · 935 Bytes
/
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
{
"name": "mober/discordnotifications",
"type": "phpbb-extension",
"description": "Publishes forum event notifications to a Discord server channel",
"homepage": "https://github.com/m-ober/phpbb-discord-notifications",
"version": "3.0.8-RC3",
"keywords": [
"phpbb",
"extension",
"discord"
],
"time": "2021-12-16",
"license": "GPL-2.0-only",
"authors": [
{
"name": "Tyler Olsen",
"homepage": "https://github.com/rootslinux",
"role": "Lead Developer"
},
{
"name": "Micha Ober",
"homepage": "https://github.com/m-ober",
"role": "Developer"
}
],
"require": {
"php": ">=7.2",
"ext-curl": "*",
"composer/installers": "~1.0"
},
"extra": {
"display-name": "Discord Notifications",
"soft-require": {
"phpbb/phpbb": ">=3.3.11"
}
},
"require-dev": {
"phing/phing": "~2.17"
},
"config": {
"allow-plugins": {
"composer/installers": true
},
"prepend-autoloader": false
}
}