-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
66 lines (66 loc) · 1.73 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "skouat/ppde",
"type": "phpbb-extension",
"description": "An extension which adds a PayPal donation page to your phpBB board",
"homepage": "https://skouat.github.io/ext_paypal_donation",
"version": "3.0.5-dev",
"keywords": [
"phpbb",
"extension",
"skouat",
"ppde",
"paypal",
"donation"
],
"license": "GPL-2.0-only",
"authors": [
{
"name": "Skouat",
"homepage": "https://skouat.github.io/ext_paypal_donation",
"role": "Developer"
},
{
"name": "cabot",
"homepage": "https://cabotweb.fr",
"role": "SushiMaker"
},
{
"name": "Mazeltof",
"homepage": "https://www.mazeland.fr/",
"role": "Sorcerer's Apprentice"
},
{
"name": "kasimi",
"homepage": "https://kasimi.net",
"role": "Contributor"
}
],
"require": {
"php": ">=7.2.0",
"ext-curl": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-dom": "*",
"composer/installers": "~1.0"
},
"extra": {
"display-name": "PayPal Donation Extension",
"soft-require": {
"phpbb/phpbb": ">=3.3.0@dev,<3.4.0@dev"
},
"version-check": {
"host": "skouat.github.io",
"directory": "/ext_paypal_donation/",
"filename": "ppde_version_check.json"
},
"security-check": {
"tls": {
"tls-host": "https://www.howsmyssl.com/a/check",
"tls-version": [
"TLS 1.2",
"TLS 1.3"
]
}
}
}
}