-
Notifications
You must be signed in to change notification settings - Fork 66
/
composer.json
41 lines (41 loc) · 1.33 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
{
"name" : "pear/http_request2",
"description" : "Provides an easy way to perform HTTP requests.",
"type" : "library",
"keywords" : [ "http", "request", "pear", "curl" ],
"homepage" : "https://pear.php.net/package/HTTP_Request2",
"license" : "BSD-3-Clause",
"authors" : [
{
"name" : "Alexey Borzov",
"email" : "[email protected]"
}
],
"support": {
"issues": "https://github.com/pear/HTTP_Request2/issues",
"source": "https://github.com/pear/HTTP_Request2",
"docs": "https://pear.php.net/manual/en/package.http.http-request2.php"
},
"require" : {
"php" : ">=5.6.0",
"pear/net_url2" : "^2.2.0",
"pear/pear_exception" : "^1.0.0"
},
"require-dev": {
"yoast/phpunit-polyfills" : "^1.0.0"
},
"suggest" : {
"ext-fileinfo" : "Adds support for looking up mime-types using finfo.",
"ext-zlib" : "Allows handling gzip compressed responses.",
"ext-curl" : "Allows using cURL as a request backend.",
"ext-openssl" : "Allows handling SSL requests when not using cURL."
},
"autoload": {
"psr-0": {
"HTTP_Request2" : ""
}
},
"autoload-dev": {
"classmap": ["tests"]
}
}