Initial commit

This commit is contained in:
2025-08-10 15:33:20 +02:00
commit 65e508927a
7 changed files with 526 additions and 0 deletions

23
composer.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "noccylabs/react-utilities",
"description": "Some quality of life utilities for ReactPHP",
"type": "library",
"require": {
"react/event-loop": "^1.5"
},
"license": "GPL-2.0-or-later",
"autoload": {
"files": [
"src/functions.php"
],
"psr-4": {
"NoccyLabs\\React\\Utilities\\": "src/"
}
},
"authors": [
{
"name": "Christopher Vagnetoft",
"email": "labs@noccy.com"
}
]
}