forked from nategood/httpful
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
62 lines (62 loc) · 1.43 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "voku/httpful",
"description": "A Readable, Chainable, REST friendly, PHP HTTP Client",
"keywords": [
"http",
"curl",
"rest",
"restful",
"api",
"requests"
],
"homepage": "https://github.com/voku/httpful",
"license": "MIT",
"authors": [
{
"name": "Nate Good",
"email": "me@nategood.com",
"homepage": "http://nategood.com"
},
{
"name": "Lars Moelleken",
"email": "lars@moelleken.org",
"homepage": "https://moelleken.org/"
}
],
"require": {
"php": ">=7.4",
"ext-curl": "*",
"ext-dom": "*",
"ext-fileinfo": "*",
"ext-json": "*",
"ext-simplexml": "*",
"ext-xmlwriter": "*",
"php-http/httplug": "2.4.* || 2.3.* || 2.2.* || 2.1.*",
"php-http/promise": "1.1.* || 1.0.*",
"psr/http-client": "1.0.*",
"psr/http-factory": "1.0.*",
"psr/http-message": "2.0.* || 1.1.* || 1.0.*",
"psr/log": "1.1.* || 2.0.* || 3.0.*",
"voku/portable-utf8": "~6.0",
"voku/simple_html_dom": "~4.7"
},
"require-dev": {
"phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
},
"provide": {
"php-http/async-client-implementation": "1.0",
"php-http/client-implementation": "1.0",
"psr/http-client-implementation": "1.0",
"psr/http-factory-implementation": "1.0"
},
"autoload": {
"psr-0": {
"Httpful": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Httpful\\tests\\": "tests/Httpful/"
}
}
}