forked from halilim/xml-iterator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (26 loc) · 761 Bytes
/
composer.json
File metadata and controls
27 lines (26 loc) · 761 Bytes
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
{
"name" : "halilim/xml-iterator",
"type" : "library",
"description" : "XML Reader to simplexml/array iterator with low memory usage and an acceptable level of ease of use.",
"keywords" : ["XML", "XMLReader", "SimpleXML", "Iterator"],
"license" : "MIT",
"authors" : [
{
"name" : "Halil Özgür",
"email": "halil@ozgur.gmail.com"
}
],
"require" : {
"php": ">=5.3",
"ext-dom" : "*",
"ext-SimpleXML": "*",
"ext-SPL" : "*",
"ext-xmlreader": "*"
},
"autoload" : {
"psr-0": {
"XmlIterator": "."
}
},
"minimum-stability": "dev"
}