Skip to content

myohanhtet/mini-mvc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mini mvc

Mini mvc.

Requirements

  • MySQL 8.0+
  • PHP 8.1+
  • Composer 2+

Packages

Installations

composer install

import sql src\demon.sql

web root src\publish

edit config file src\Config\config.php

'timezone' => "Asia/Yangon",
'session' => 36000, //second
'db' => [
    'host' => 'localhost',
    'dbname' => 'mini',
    'username' => 'root',
    'password' => ''
],
'encryption' => [
    'key' => 'your-key',
    'cipher' => 'AES-256-CBC',
    'iv' => 'abc123'
], 

Demo user

User Code: DEMO001

Password: Admin@123

Todo

  • encrypt get request Id
  • document upload/download
  • billing
  • Landing Page
  • role/permission

Credits