-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 870 Bytes
/
composer.json
File metadata and controls
29 lines (29 loc) · 870 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
28
29
{
"name" : "soothsilver/dtd-parser",
"description" : "Simple fully compliant DTD parser that allows you to extract information from Document Type Definition files.",
"version" : "0.1.0",
"license" : "MIT",
"type" : "library",
"keywords" : [ "DTD", "XML", "parser" ],
"homepage" : "https://github.com/Soothsilver/dtd-parser",
"time" : "2014-10-23",
"authors": [
{
"name" : "Petr Hudeček",
"email" : "petrhudecek2010@gmail.com",
"homepage" : "http://petrhudecek.ic.cz/",
"role" : "Developer"
}
],
"support": {
"email" : "petrhudecek2010@gmail.com",
"source" : "https://github.com/Soothsilver/dtd-parser"
},
"require": {
"php": ">=5.3"
},
"autoload": {
"classmap" :
[ "SoothsilverDtdParser.php" ]
}
}