-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcomposer.json
46 lines (46 loc) · 1.67 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
{
"name": "boardtools/upload",
"type": "phpbb-extension",
"description": "Upload Extensions enables you to upload extensions' zip files or delete extensions' folders from the server. With this extension you can install/update/delete extensions without using FTP. If the uploaded extension already exists, it will be updated with the uploaded files. Upload Extensions also has other built-in features such as the manager for extensions' language packages and the manager for extensions' zip files.",
"homepage": "http://boardtools.github.io/upload/",
"version": "3.2.0-RC",
"keywords": ["boardtools", "forumhulp", "phpbb", "extension", "upload", "unzip", "zip", "delete", "unpack"],
"license": "GPL-2.0",
"authors": [
{
"name": "Igor Lavrov",
"homepage": "https://github.com/lavigor",
"role": "Developer, maintainer"
},
{
"name": "John Peskens",
"homepage": "http://forumhulp.com",
"email": "[email protected]",
"role": "Former developer"
}
],
"require": {
"php": ">=5.3.3",
"michelf/php-markdown": "~1.4",
"fortawesome/font-awesome": "~4.3"
},
"require-dev": {
"phpbb/epv": "dev-master"
},
"autoload": {
"psr-4": {
"Michelf\\": "vendor/michelf/php-markdown/Michelf/"
}
},
"extra": {
"display-name": "Upload Extensions",
"soft-require": {
"phpbb/phpbb": ">=3.1.0"
},
"version-check": {
"host": "boardtools.github.io",
"directory": "/upload",
"filename": "upload.json"
}
}
}