Initial commit

This commit is contained in:
Christopher Vagnetoft
2026-01-17 17:08:45 +01:00
commit b1690a10d2
8 changed files with 1753 additions and 0 deletions

23
composer.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "noccylabs/ntfi",
"description": "A daemon for centralizing pushing events to a ntfy instance",
"type": "application",
"license": "GPL-2.0-or-later",
"autoload": {
"psr-4": {
"NoccyLabs\\Ntfi\\": "src/"
}
},
"authors": [
{
"name": "Christopher Vagnetoft",
"email": "labs@noccy.com"
}
],
"require": {
"react/react": "^1.4",
"symfony/yaml": "^8.0",
"psr/log": "^3.0"
},
"bin": [ "bin/ntfid" ]
}