-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
33 lines (33 loc) · 984 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
33
{
"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@clue.engineering"
}
],
"require": {
"php": ">=5.3",
"react/promise": "^3 || ^2.9 || ^1.2.1",
"react/stream": "^1.2"
},
"require-dev": {
"clue/ndjson-react": "^1.0",
"phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36",
"react/http": "^1.8"
},
"autoload": {
"psr-4": {
"Clue\\React\\Flux\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Clue\\Tests\\React\\Flux\\": "tests/"
}
}
}