1{
2    "name": "sabre/http",
3    "description" : "The sabre/http library provides utilities for dealing with http requests and responses. ",
4    "keywords" : [ "HTTP" ],
5    "homepage" : "https://github.com/fruux/sabre-http",
6    "license" : "BSD-3-Clause",
7    "require" : {
8        "php"          : ">=5.4",
9        "ext-mbstring" : "*",
10        "ext-ctype"    : "*",
11        "sabre/event"  : ">=1.0.0,<4.0.0",
12        "sabre/uri"    : "~1.0"
13    },
14    "require-dev" : {
15        "phpunit/phpunit" : "~4.3",
16        "sabre/cs" : "~0.0.1"
17    },
18    "suggest" : {
19        "ext-curl" : " to make http requests with the Client class"
20    },
21    "authors" : [
22        {
23            "name" : "Evert Pot",
24            "email" : "me@evertpot.com",
25            "homepage" : "http://evertpot.com/",
26            "role" : "Developer"
27        }
28    ],
29    "support" : {
30        "forum" : "https://groups.google.com/group/sabredav-discuss",
31        "source" : "https://github.com/fruux/sabre-http"
32    },
33    "autoload" : {
34        "files" : [
35            "lib/functions.php"
36        ],
37        "psr-4" : {
38            "Sabre\\HTTP\\" : "lib/"
39        }
40    },
41    "config" : {
42        "bin-dir" : "bin/"
43    }
44}
45