forked from clue/php-sse-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 759 Bytes
/
Copy pathcomposer.json
File metadata and controls
26 lines (26 loc) · 759 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
{
"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": "christian@lueck.tv"
}
],
"autoload": {
"psr-4": { "Clue\\React\\Sse\\": "src/" }
},
"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": "^5.0 || ^4.8"
}
}