forked from pear/HTTP_Request2
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.19 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.19 KB
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
47
48
49
50
51
52
53
{
"name": "findologic/http_request2",
"description": "Provides an easy way to perform HTTP requests.",
"type": "library",
"keywords": [
"http",
"request",
"pear",
"curl"
],
"homepage": "https://github.com/findologic/HTTP_Request2",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Alexey Borzov",
"email": "avb@php.net"
}
],
"support": {
"issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=HTTP_Request2",
"source": "https://github.com/pear/HTTP_Request2"
},
"require": {
"php": ">=7.3",
"pear/net_url2": "^2.2.0",
"pear/pear_exception": "^1.0.0"
},
"suggest": {
"ext-fileinfo": "Adds support for looking up mime-types using finfo.",
"ext-zlib": "Allows handling gzip compressed responses.",
"lib-curl": "Allows using cURL as a request backend.",
"lib-openssl": "Allows handling SSL requests when not using cURL."
},
"autoload": {
"psr-0": {
"HTTP_Request2": ""
}
},
"scripts": {
"test": "phpunit tests"
},
"include-path": [
"./"
],
"extra": {
"branch-alias": {
"dev-trunk": "2.2-dev"
}
},
"require-dev": {
"phpunit/phpunit": "^9.0"
}
}