Initial commit

This commit is contained in:
Christopher Vagnetoft
2026-03-01 01:11:48 +01:00
commit 1659492009
7 changed files with 1144 additions and 0 deletions

21
composer.json Normal file
View File

@@ -0,0 +1,21 @@
{
"name": "noccylabs/react-sse",
"description": "Server-Sent Events with ReactPHP",
"type": "library",
"license": "GPL-2.0-or-later",
"autoload": {
"psr-4": {
"NoccyLabs\\React\\Sse\\": "src/"
}
},
"authors": [
{
"name": "Christopher Vagnetoft",
"email": "labs@noccy.com"
}
],
"require": {
"react/http": "^1.11",
"react/stream": "^1.4"
}
}