-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
33 lines (33 loc) · 898 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/sse-react",
"description": "Streaming, async HTML5 Server-Sent Events server (aka. SSE or EventSource)",
"keywords": ["Server-Sent Events", "SSE", "EventSource", "event-driven", "ReactPHP", "async"],
"homepage": "https://github.com/clue/php-sse-react",
"license": "MIT",
"authors": [
{
"name": "Christian Lück",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3",
"react/event-loop": "^1.0",
"react/http": "^1.0",
"react/stream": "^1.0"
},
"require-dev": {
"clue/redis-react": "^2.4",
"phpunit/phpunit": "^9.6 || ^7.5 || ^4.8.36"
},
"autoload": {
"psr-4": {
"Clue\\React\\Sse\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Clue\\React\\Tests\\Sse\\": "tests/"
}
}
}