-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
38 lines (38 loc) · 887 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
36
37
38
{
"name": "davidasrocha/php-resumable-download",
"type": "library",
"description": "PHP Resumable Download library that add supports to consume servers with HTTP Partial Request",
"keywords": [
"php",
"http",
"partial request",
"resume download",
"download"
],
"license": "MIT",
"authors": [
{
"name": "David Anderson",
"email": "david.anderson.sil@gmail.com"
}
],
"require": {
"php": "^7.2",
"guzzlehttp/guzzle": "^6.4",
"monolog/monolog": "^2.0"
},
"autoload": {
"psr-4": {
"PHP\\ResumableDownload\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"mockery/mockery": "@stable"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}