-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
45 lines (45 loc) · 1.05 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
{
"name": "phpbb/ads",
"type": "phpbb-extension",
"description": "An extension for phpBB that allows administrators to manage and display advertisements on their forums.",
"homepage": "https://www.phpbb.com/customise/db/extension/ads/",
"version": "3.0.0",
"keywords": ["phpbb", "extension", "advertisement"],
"license": "GPL-2.0-only",
"authors": [
{
"name": "Jakub Senko",
"email": "[email protected]",
"role": "Extension Developer"
},
{
"name": "Matt Friedman",
"homepage": "https://imattpro.github.io",
"role": "Extensions Development Team Lead"
},
{
"name": "Derky",
"homepage": "http://www.derky.nl",
"role": "Extensions Team"
}
],
"require": {
"php": ">=7.1.3",
"composer/installers": "~1.0"
},
"require-dev": {
"phing/phing": "~2.4"
},
"extra": {
"display-name": "Advertisement Management",
"soft-require": {
"phpbb/phpbb": ">=3.3.2,<4.0.0@dev"
},
"version-check": {
"host": "www.phpbb.com",
"directory": "/customise/db/extension/ads",
"filename": "version_check",
"ssl": true
}
}
}