-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (35 loc) · 820 Bytes
/
composer.json
File metadata and controls
36 lines (35 loc) · 820 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
30
31
32
33
34
35
36
{
"name": "lyquidity/xml",
"description": "Reads XML Schema documents (.xsd) files and extracts type information for PHP",
"keywords": ["lyquidity", "xml", "schema"],
"type": "library",
"homepage": "https://github.com/bseddon/xml",
"license": "GPL-3.0-only",
"authors": [
{
"name": "Bill Seddon",
"homepage": "https://github.com/orgs/lyquidity/people/bseddon"
}
],
"require": {
"php": ">7.0",
"ext-date" : "*",
"ext-dom" : "*",
"ext-hash" : "*",
"ext-intl" : "*",
"ext-libxml" : "*",
"ext-mbstring" : "*",
"ext-pcre" : "*",
"ext-SimpleXML" : "*",
"ext-SPL" : "*",
"ext-xml" : "*",
"lib-iconv" : "*",
"lib-ICU" : "*",
"lib-libxml" : "*",
"lib-pcre" : "*",
"pear/log": ">1.13"
},
"autoload": {
"files": [ "./bootstrap.php" ]
}
}