-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
32 lines (32 loc) · 870 Bytes
/
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
{
"name": "clue/tar-react",
"description": "Streaming parser to extract tarballs with ReactPHP.",
"keywords": ["tar", "archive", "tarball", "untar", "parser", "decoder", "extract", "unpack", "ReactPHP", "async"],
"homepage": "https://github.com/clue/reactphp-tar",
"license": "MIT",
"authors": [
{
"name": "Christian Lück",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3",
"react/stream": "^1.2"
},
"require-dev": {
"clue/hexdump": "~0.2.0",
"react/event-loop": "^1.2",
"phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
},
"autoload": {
"psr-4": {
"Clue\\React\\Tar\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Clue\\Tests\\React\\Tar\\": "tests/"
}
}
}