├── .gitignore ├── README.md ├── app ├── Controllers │ └── HomeController.php ├── Helpers │ ├── DB.php │ ├── Params.php │ ├── Route.php │ └── View.php ├── Models │ └── User.php ├── config.php └── routes.php ├── composer.json ├── database.sql ├── index.php └── views └── home └── welcome.php /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor/ 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriar-siraj/vanilla-php-framework/HEAD/README.md -------------------------------------------------------------------------------- /app/Controllers/HomeController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriar-siraj/vanilla-php-framework/HEAD/app/Controllers/HomeController.php -------------------------------------------------------------------------------- /app/Helpers/DB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriar-siraj/vanilla-php-framework/HEAD/app/Helpers/DB.php -------------------------------------------------------------------------------- /app/Helpers/Params.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriar-siraj/vanilla-php-framework/HEAD/app/Helpers/Params.php -------------------------------------------------------------------------------- /app/Helpers/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriar-siraj/vanilla-php-framework/HEAD/app/Helpers/Route.php -------------------------------------------------------------------------------- /app/Helpers/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriar-siraj/vanilla-php-framework/HEAD/app/Helpers/View.php -------------------------------------------------------------------------------- /app/Models/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriar-siraj/vanilla-php-framework/HEAD/app/Models/User.php -------------------------------------------------------------------------------- /app/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriar-siraj/vanilla-php-framework/HEAD/app/config.php -------------------------------------------------------------------------------- /app/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriar-siraj/vanilla-php-framework/HEAD/app/routes.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriar-siraj/vanilla-php-framework/HEAD/composer.json -------------------------------------------------------------------------------- /database.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriar-siraj/vanilla-php-framework/HEAD/database.sql -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriar-siraj/vanilla-php-framework/HEAD/index.php -------------------------------------------------------------------------------- /views/home/welcome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shahriar-siraj/vanilla-php-framework/HEAD/views/home/welcome.php --------------------------------------------------------------------------------