-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.17 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.17 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
{
"name" : "gn36/versionchecknotifier",
"type" : "phpbb-extension",
"description" : "This extension checks for extension and phpBB updates periodically and notifies admins about updates.",
"homepage" : "https://github.com/gn36/phpbb-ext-versionchecknotifier/",
"version" : "1.0.1",
"time" : "2015-01-03",
"license" : "GPL-2.0",
"authors" : [{
"name" : "Martin Beckmann",
"email" : "gn#36@phpbb.de",
"homepage" : "https://www.phpbb.de/",
"role" : "Lead Developer"
}
],
"require" : {
"php" : ">=5.3.3"
},
"require-dev" : {
"phpbb/epv" : "dev-master",
"phpbb/translation-validator" : ">=1.3"
},
"extra" : {
"display-name" : "gn36 - Version Check Notifier",
"soft-require" : {
"phpbb/phpbb" : ">=3.1.2,<3.2@dev"
},
"version-check" : {
"host" : "phpbb.gn36.de",
"directory" : "/extensions/vinfo",
"filename" : "phpbb-ext-versionchecknotifier.json"
}
},
"autoload" : {
"psr-4" : {
"gn36\\versionchecknotifier\\" : ""
}
},
"support" : {
"forum" : "https://www.phpbb.de/community/",
"issues" : "https://github.com/gn36/phpbb-ext-versionchecknotifier/issues/",
"source" : "https://github.com/gn36/phpbb-ext-versionchecknotifier/"
}
}