-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
43 lines (43 loc) · 1.26 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
{
"name": "toin0u/http-adapter",
"type": "library",
"description": "HttpAdapter PHP 5.3+ library",
"keywords": ["Http", "Adapter"],
"homepage": "https://github.com/toin0u/HttpAdapter",
"license": "MIT",
"authors": [
{
"name": "Antoine Corcy",
"email": "contact@sbin.dk",
"homepage": "http://sbin.dk",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/toin0u/HttpAdapter/issues",
"source": "https://github.com/toin0u/HttpAdapter"
},
"require": {
"php": ">=5.3.0",
"ext-curl" : "*"
},
"require-dev": {
"kriswallsmith/buzz": "@stable",
"guzzle/guzzle": "@stable",
"zendframework/zendframework": "~2.1",
"satooshi/php-coveralls": "~0.6"
},
"suggest": {
"kriswallsmith/buzz": "Enabling Buzz allows you to use the BuzzHttpAdapter",
"guzzle/guzzle": "Enabling Guzzle allows you to use the GuzzleHttpAdapter",
"zendframework/zendframework": "Enabling Zend Http allows you to use the ZendHttpAdapter"
},
"autoload": {
"psr-0": { "HttpAdapter": "src/" }
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}