-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 879 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 879 Bytes
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
{
"name": "vse/topicpreview",
"type": "phpbb-extension",
"description": "A phpBB extension that displays a short excerpt of text from the first post in a tooltip while the mouse hovers over a topic’s title.",
"homepage": "https://github.com/iMattPro/topicpreview",
"version": "2.4.0-dev",
"keywords": ["phpbb", "extension", "topic", "preview"],
"license": "GPL-2.0-only",
"authors": [
{
"name": "Matt Friedman",
"homepage": "https://imattpro.github.io",
"role": "Developer"
}
],
"require": {
"php": ">=7.2",
"composer/installers": "^1.0 || ^2.0",
"ext-dom": "*",
"ext-libxml": "*"
},
"extra": {
"display-name": "Topic Preview",
"soft-require": {
"phpbb/phpbb": ">=3.3.0"
},
"version-check": {
"host": "www.phpbb.com",
"directory": "/customise/db/extension/topicpreview",
"filename": "version_check",
"ssl": true
}
}
}