forked from clue/reactphp-flux
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 935 Bytes
/
Copy pathcomposer.json
File metadata and controls
30 lines (30 loc) · 935 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
{
"name": "clue/reactphp-flux",
"description": "Flux, the lightweight stream processor to concurrently do many (but not too many) things at once, built on top of ReactPHP.",
"keywords": ["flux", "streaming", "non-blocking", "concurrency", "message queue", "ReactPHP", "async"],
"homepage": "https://github.com/clue/reactphp-flux",
"license": "MIT",
"authors": [
{
"name": "Christian Lück",
"email": "christian@lueck.tv"
}
],
"autoload": {
"psr-4": {
"Clue\\React\\Flux\\": "src"
}
},
"autoload-dev": {
"psr-4": { "Clue\\Tests\\React\\Flux\\": "tests/" }
},
"require": {
"react/promise": "^2.5 || ^1.2.1",
"react/stream": "^1.0 || ^0.7.7"
},
"require-dev": {
"clue/ndjson-react": "^1.0",
"phpunit/phpunit": "^9.3 || ^5.7 || ^4.8.35",
"react/http": "^1.0"
}
}