-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.66 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.66 KB
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
50
51
52
53
54
55
56
57
{
"name": "phpbb/webpushnotifications",
"type": "phpbb-extension",
"description": "An official phpBB extension that allows board users to receive browser-based push notifications.",
"homepage": "https://www.phpbb.com/customise/db/extension/webpushnotifications/",
"version": "1.0.4",
"license": "GPL-2.0-only",
"authors": [
{
"name": "Marc Alexander",
"homepage": "https://www.m-a-styles.de",
"role": "Extensions Team Consultant"
},
{
"name": "Ruslan Uzdenov",
"homepage": "https://www.phpbbguru.net",
"role": "Extensions Development Team"
},
{
"name": "Matt Friedman",
"homepage": "https://imattpro.github.io",
"role": "Extensions Development Team Lead"
}
],
"require": {
"php": ">=7.3",
"ext-curl": "*",
"ext-json": "*",
"ext-mbstring": "*",
"ext-openssl": "*",
"composer/installers": "~1.0",
"minishlink/web-push": "^7.0"
},
"require-dev": {
"phing/phing": "~2.4"
},
"suggest": {
"ext-gmp": "Optional but better for performance"
},
"config": {
"allow-plugins": {
"composer/installers": true
}
},
"extra": {
"display-name": "phpBB Browser Push Notifications",
"soft-require": {
"phpbb/phpbb": ">=3.3.12,<4.0.0@dev"
},
"version-check": {
"host": "www.phpbb.com",
"directory": "/customise/db/extension/webpushnotifications",
"filename": "version_check",
"ssl": true
}
}
}