-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
60 lines (60 loc) · 1.17 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "deepdiver/zipstreamer",
"type": "library",
"description": "Stream zip files without i/o overhead",
"keywords": [
"zip",
"stream"
],
"homepage": "https://github.com/DeepDiver1975/PHPZipStreamer",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Nicolai Ehemann",
"email": "[email protected]",
"role": "Author/Maintainer"
},
{
"name": "André Rothe",
"email": "[email protected]",
"role": "Contributor"
},
{
"name": "Lukas Reschke",
"email": "[email protected]",
"role": "Contributor"
},
{
"name": "Thomas Müller",
"email": "[email protected]",
"role": "Contributor"
},
{
"name": "Roeland Jago Douma",
"email": "[email protected]",
"role": "Contributor"
}
],
"require": {
"php": ">=7.1",
"ext-mbstring": "*"
},
"require-dev": {
"ext-xdebug": "*",
"ext-zlib": "*",
"phpunit/phpunit": "^7 || ^8"
},
"suggest": {
"ext-http": ">=0.10"
},
"autoload": {
"psr-4": {
"ZipStreamer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}