forked from clue/reactphp-zlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 880 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 880 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
{
"name": "clue/zlib-react",
"description": "Streaming zlib compressor and decompressor, supporting GZIP format (RFC 1952), raw DEFLATE format (RFC 1951) and ZLIB format (RFC 1950)",
"keywords": ["zlib", "gzip", "gz", "deflate", "inflate", "compression", "decompression", "RFC 1950", "RFC 1951", "RFC 1952", "reactphp"],
"homepage": "https://github.com/clue/php-zlib-react",
"license": "MIT",
"authors": [
{
"name": "Christian Lück",
"email": "christian@lueck.tv"
}
],
"require": {
"php": ">=5.3",
"react/stream": "~0.4.3",
"clue/stream-filter": "~1.3"
},
"require-dev": {
"react/event-loop": "~0.4.0|~0.3.0"
},
"suggest": {
"ext-zlib": "Requires ext-zlib extension"
},
"autoload": {
"psr-4": { "Clue\\React\\Zlib\\": "src/" }
}
}