-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathcomposer.json
66 lines (66 loc) · 2.49 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
63
64
65
66
{
"name": "egeloen/http-adapter",
"description": "Issue HTTP request for PHP 5.4.8+.",
"keywords": [ "http", "http-adapter", "http-client", "psr-7" ],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Eric GELOEN",
"email": "[email protected]"
}
],
"require": {
"php": "^5.4.8|^7.0",
"zendframework/zend-diactoros": "^1.1"
},
"require-dev": {
"cakephp/cakephp": "^3.0.3",
"doctrine/cache": "^1.4",
"ext-curl": "*",
"friendsofphp/php-cs-fixer": "^2.0",
"guzzle/guzzle": "^3.9.4@dev",
"guzzlehttp/guzzle": "^4.1.4|^5.0|^6.0",
"kriswallsmith/buzz": "~0.13",
"nategood/httpful": "^0.2.17",
"phpunit/phpunit": "^4.0|^5.0",
"phpunit/phpunit-mock-objects": "^2.1|^3.0",
"psr/log": "^1.0",
"react/http-client": "^0.4",
"react/dns": "^0.4.1",
"rmccue/requests": "^1.7",
"symfony/event-dispatcher": "^2.0|^3.0",
"symfony/phpunit-bridge": "^2.7|^3.0",
"symfony/stopwatch": "^2.2|^3.0",
"tedivm/stash": "~0.13",
"zendframework/zendframework1": "^1.12.9",
"zendframework/zend-http": "^2.3.4"
},
"suggest": {
"doctrine/cache": "Allows you to use the cache event subscriber",
"ext-curl": "Allows you to use the cURL adapter",
"ext-http": "Allows you to use the PECL adapter",
"guzzle/guzzle": "Allows you to use the Guzzle 3 adapter",
"guzzlehttp/guzzle": "Allows you to use the Guzzle 4 adapter",
"kriswallsmith/buzz": "Allows you to use the Buzz adapter",
"nategood/httpful": "Allows you to use the Httpful adapter",
"psr/log": "Allows you to use the logger event subscriber",
"rmccue/requests": "Allows you to use the Requests adapter",
"symfony/event-dispatcher": "Allows you to use the event lifecycle",
"symfony/stopwatch": "Allows you to use the stopwatch http adapter and event subscriber",
"tedivm/stash": "Allows you to use the cache event subscriber",
"zendframework/zendframework1": "Allows you to use the Zend 1 adapter",
"zendframework/zend-http": "Allows you to use the Zend 2 adapter"
},
"autoload": {
"psr-4": { "Ivory\\HttpAdapter\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Ivory\\Tests\\HttpAdapter\\": "tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}