-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
35 lines (35 loc) · 871 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
{
"name": "davidiq/mailinglist",
"type": "phpbb-extension",
"description": "Adds basic mailing list functionality to forward new posts/replies to a mailing list.",
"homepage": "https://www.phpbb.com/customise/db/extension/mailinglist/",
"version": "2.0.0",
"keywords": ["phpbb", "extension", "email", "mailinglist"],
"license": "GPL-2.0-only",
"authors": [
{
"name": "David Colón",
"email": "[email protected]",
"homepage": "http://www.davidiq.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.0.0",
"composer/installers": "~1.0"
},
"require-dev": {
"phpbb/epv": "master"
},
"extra": {
"display-name": "Mailing List",
"soft-require": {
"phpbb/phpbb": ">=3.2.8,<4.0.0@dev"
},
"version-check": {
"host": "www.phpbb.com",
"directory": "/customise/db/extension/mailinglist",
"filename": "version_check"
}
}
}