-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
40 lines (40 loc) · 1008 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
39
40
{
"authors": [
{
"email": "[email protected]",
"name": "Philippe Jausions",
"role": "Lead"
},
{
"email": "[email protected]",
"name": "Michael Wallner",
"role": "Lead"
}
],
"autoload": {
"psr-0": {
"HTTP": "./"
}
},
"description": "More info available on: http://pear.php.net/package/HTTP_Download2",
"include-path": [
"./"
],
"license": "BSD, revised",
"name": "pear/http_download2",
"support": {
"issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=HTTP_Download",
"source": "https://github.com/pear/HTTP_Download"
},
"type": "library",
"require": {
"pear/pear_exception": "*",
"pear/pear": "*"
},
"require-dev": {
"phpunit/phpunit": "*"
},
"suggest": {
"pear/archive_tar": "Install optionally via your project's composer.json"
}
}