-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathcomposer.json
50 lines (50 loc) · 1.2 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
{
"name": "phpbb/boardrules",
"type": "phpbb-extension",
"description": "An extension which allows you to create a set of rules for your phpBB forum",
"homepage": "https://www.phpbb.com/customise/db/extension/boardrules/",
"version": "3.0.2-dev",
"keywords": ["phpbb", "extension", "rules"],
"license": "GPL-2.0-only",
"authors": [
{
"name": "Michael Cullum",
"homepage": "http://michaelcullum.com",
"email": "[email protected]",
"role": "Extensions Team Consultant"
},
{
"name": "Nathan Guse",
"email": "[email protected]",
"role": "Former Extensions Development Team Lead"
},
{
"name": "Matt Friedman",
"homepage": "https://imattpro.github.io",
"role": "Extensions Development Team Lead"
},
{
"name": "Lukasz Kaczynski",
"role": "Former Extensions Development Team Member"
}
],
"require": {
"php": ">=7.1.3",
"composer/installers": "~1.0"
},
"require-dev": {
"phing/phing": "~2.4"
},
"extra": {
"display-name": "Board Rules",
"soft-require": {
"phpbb/phpbb": ">=3.3.2,<4.0.0@dev"
},
"version-check": {
"host": "www.phpbb.com",
"directory": "/customise/db/extension/boardrules",
"filename": "version_check",
"ssl": true
}
}
}