Initial commit

This commit is contained in:
2025-11-10 13:36:25 +01:00
commit 904b426a00
8 changed files with 597 additions and 0 deletions

23
composer.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "noccylabs/react-inotify",
"description": "Watch files and directories using inotify",
"type": "library",
"license": "GPL-2.0-or-later",
"autoload": {
"psr-4": {
"NoccyLabs\\React\\Inotify\\": "src/"
}
},
"authors": [
{
"name": "Christopher Vagnetoft",
"email": "labs@noccy.com"
}
],
"require": {
"php": "^8.3",
"ext-inotify": "*",
"react/event-loop": "^1.5",
"evenement/evenement": "^3.0"
}
}