-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
30 lines (30 loc) · 1.23 KB
/
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
{
"name": "borsodigerii/php-xml-chunker",
"description": "A lightweight, fast, and optimized XML file splitter with build in tag data validation, written with the XMLParser library. The main goal of this is to split an XML file into multiple small chunks (hence the name), then save it into multiple different little XML files.",
"keywords": [
"fast", "lightweight", "php", "php7", "xml", "split", "xml-parsing", "xml-parser", "charset", "splitter", "chunking", "xml-parser-library", "php8", "charset-normalizer", "xml-parser-lib"
],
"type": "library",
"license": "MIT",
"homepage": "https://github.com/borsodigerii/php-xml-chunker",
"readme": "https://github.com/borsodigerii/php-xml-chunker/blob/main/README.md",
"authors": [{
"name": "Borsodi Gergő",
"email": "borsodi.geri30@gmail.com",
"homepage": "https://borsodigerii.hu"
}],
"require": {
"php": ">=7.4.0"
},
"require-dev": {},
"support": {
"issues": "https://github.com/borsodigerii/php-xml-chunker/issues",
"source": "https://github.com/borsodigerii/php-xml-chunker"
},
"autoload": {
"psr-0": {
"Chunker\\": "src/"
}
},
"autoload-dev": {}
}