-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
30 lines (30 loc) · 866 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
{
"name": "jkuchar/filedownloader",
"description": "Addon makes controlled downloads of files peace of cake. It supports client reconnections, segmented downloading, files over 4GB, automatic mime-type detection and special characters in file names. If you need to control download speed you are on the right site.",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Jan Kuchař",
"email": "[email protected]",
"homepage": "http://www.grifart.cz",
"role": "developer"
}
],
"autoload": {
"psr-4": {
"FileDownloader\\": "src"
},
"classmap": ["src/exceptions.php"]
},
"autoload-dev": {
"files": ["src/exceptions.php"]
},
"require": {
"php": ">= 5.3.0",
"ext-curl": "*",
"jkuchar/bigfiletools": ">=1.1.0 <=2.0"
},
"suggest": {
"nette/application": "Integration with Nette\\Application is available."
}
}