Initial Release v1.0.0: Full feature set with Docker automation, Nginx/Alpine stack

This commit is contained in:
dyzulk
2026-01-16 11:21:32 +07:00
commit 45623973a8
139 changed files with 24302 additions and 0 deletions

24
composer.json Normal file
View File

@@ -0,0 +1,24 @@
{
"name": "dyzulk/mivo",
"description": "MIVO - Modern Mikrotik Voucher Management System",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "DyzulkDev",
"email": "dev@dyzulk.com"
}
],
"require": {
"php": "^8.0",
"ext-sqlite3": "*",
"ext-openssl": "*",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"minimum-stability": "stable"
}