forked from clue/reactphp-ndjson
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
25 lines (25 loc) · 786 Bytes
/
composer.json
File metadata and controls
25 lines (25 loc) · 786 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
{
"name": "clue/ndjson-react",
"description": "Streaming newline delimited JSON (NDJSON) parser, built on top of React PHP",
"keywords": ["NDJSON", "newline", "JSON", "jsonlines", "streaming", "ReactPHP"],
"homepage": "https://github.com/clue/php-ndjson-react",
"license": "MIT",
"authors": [
{
"name": "Christian Lück",
"email": "christian@lueck.tv"
}
],
"autoload": {
"psr-4": { "Clue\\React\\NDJson\\": "src/" }
},
"require": {
"php": ">=5.3",
"react/stream": "^1.0 || ^0.7 || ^0.6 || ^0.5 || ^0.4 || ^0.3"
},
"require-dev": {
"react/event-loop": " ^0.4 || ^0.3",
"phpunit/phpunit": "^5.0 || ^4.8",
"react/stream": "^1.0 || ^0.7 || ^0.6"
}
}