-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.08 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.08 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
{
"name": "widop/http-adapter",
"description": "Issue HTTP request.",
"keywords": [ "request", "http" ],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Widop",
"email": "contact@widop.com"
},
{
"name": "Eric GELOEN",
"email": "geloen.eric@gmail.com"
}
],
"require": {
"php": ">=5.3.3"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"ext-curl": "*",
"kriswallsmith/buzz": "*",
"guzzle/guzzle": "*",
"zendframework/zend-http": "*"
},
"suggest": {
"ext-curl": "Allows you to use cURL adapter",
"kriswallsmith/buzz": "Allows you to use Buzz adapter",
"guzzle/guzzle": "Allows you to use Guzzle adapter",
"zendframework/zend-http": "Allows you to use Zend adapter"
},
"autoload": {
"psr-0": { "Widop\\HttpAdapter": "src/" }
},
"config": {
"bin-dir": "bin"
},
"extra": {
"branch-alias": {
"dev-master": "1.1-dev"
}
}
}