1{
2    "name": "sabre/xml",
3    "description" : "sabre/xml is an XML library that you may not hate.",
4    "keywords" : [ "XML", "XMLReader", "XMLWriter", "DOM" ],
5    "homepage" : "https://sabre.io/xml/",
6    "license" : "BSD-3-Clause",
7    "require" : {
8        "php" : ">=5.5.5",
9        "ext-xmlwriter" : "*",
10        "ext-xmlreader" : "*",
11        "ext-dom" : "*",
12        "lib-libxml" : ">=2.6.20",
13        "sabre/uri" : ">=1.0,<3.0.0"
14    },
15    "authors" : [
16        {
17            "name" : "Evert Pot",
18            "email" : "me@evertpot.com",
19            "homepage" : "http://evertpot.com/",
20            "role" : "Developer"
21        },
22        {
23            "name": "Markus Staab",
24            "email": "markus.staab@redaxo.de",
25            "role" : "Developer"
26        }
27    ],
28    "support" : {
29        "forum" : "https://groups.google.com/group/sabredav-discuss",
30        "source" : "https://github.com/fruux/sabre-xml"
31    },
32    "autoload" : {
33        "psr-4" : {
34            "Sabre\\Xml\\" : "lib/"
35        },
36        "files": [
37            "lib/Deserializer/functions.php",
38            "lib/Serializer/functions.php"
39        ]
40    },
41    "autoload-dev" : {
42        "psr-4" : {
43            "Sabre\\Xml\\" : "tests/Sabre/Xml/"
44        }
45    },
46    "require-dev": {
47        "sabre/cs": "~1.0.0",
48        "phpunit/phpunit" : "~4.8|~5.7"
49    },
50    "config" : {
51        "bin-dir" : "bin/"
52    }
53}
54