forked from clue/reactphp-eventsource
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
24 lines (24 loc) · 812 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
{
"name": "clue/reactphp-eventsource",
"description": "Event-driven EventSource client, receiving streaming messages from any HTML5 Server-Sent Events (SSE) server, built on top of ReactPHP",
"keywords": ["EventSource", "Server-Side Events", "SSE", "event-driven", "ReactPHP", "async"],
"homepage": "https://github.com/clue/reactphp-eventsource",
"license": "MIT",
"authors": [
{
"name": "Christian Lück",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": { "Clue\\React\\EventSource\\": "src/" }
},
"require": {
"php": ">=5.4",
"clue/buzz-react": "^2.5",
"evenement/evenement": "^3.0 || ^2.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0 || ^6.4 || ^5.7 || ^4.8.35"
}
}