-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
32 lines (32 loc) · 905 Bytes
/
composer.json
File metadata and controls
32 lines (32 loc) · 905 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
{
"name": "grandt/phpzipmerge",
"type": "library",
"description": "Merge and stream multiple Zip files on the fly.",
"keywords": ["phpzip", "zip", "pkzip", "archive", "compressed", "compression", "stream", "merge"],
"homepage": "https://github.com/Grandt/PHPZipMerge",
"license": "LGPL-2.1",
"version": "1.0.4",
"authors": [
{
"name": "A. Grandt",
"email": "php@grandt.com",
"homepage": "http://grandt.com",
"role": "Developer"
},
{
"name": "Greg Kappatos",
"homepage": "http://websiteconnect.com.au",
"role": "Developer"
}
],
"require": {
"grandt/binstring": ">=1.0.0",
"grandt/relativepath": ">=1.0.1",
"php": ">=5.3.0"
},
"autoload": {
"psr-4": {
"ZipMerge\\": "src/ZipMerge"
}
}
}