Initial commit

This commit is contained in:
Christopher Vagnetoft
2026-04-02 22:29:35 +02:00
commit 62a1167055
31 changed files with 3759 additions and 0 deletions

24
composer.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "noccylabs/react-protocol",
"description": "Generic wire protocols for ReactPHP applications",
"type": "library",
"license": "GPL-2.0-or-later",
"autoload": {
"psr-4": {
"NoccyLabs\\React\\Protocol\\": "src/"
}
},
"authors": [
{
"name": "Christopher Vagnetoft",
"email": "labs@noccy.com"
}
],
"require": {
"react/stream": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "^13.0",
"phpstan/phpstan": "^2.1"
}
}