forked from sabre-io/xml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 879 Bytes
/
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
{
"name": "sabre/xml",
"description" : "The Sabre XML parser is the only XML library that you may not hate.",
"keywords" : [ "XML", "XMLReader", "XMLWriter", "DOM" ],
"homepage" : "https://github.com/fruux/sabre-xml",
"license" : "BSD-3-Clause",
"require" : {
"php" : ">=5.4.1",
"ext-xmlwriter" : "*",
"ext-xmlreader" : "*",
"ext-dom" : "*"
},
"authors" : [
{
"name" : "Evert Pot",
"email" : "[email protected]",
"homepage" : "http://evertpot.com/",
"role" : "Developer"
}
],
"support" : {
"forum" : "https://groups.google.com/group/sabredav-discuss",
"source" : "https://github.com/fruux/sabre-xml"
},
"autoload" : {
"psr-0" : {
"Sabre\\XML" : "lib/"
}
},
"bin" : [
]
}