Basic MVC framework for small applications and for beginners in this framework model
The structure has no ORM, the entire process of assembling the queries is done with PDO. Remember to modify the application path in the .htaccess file
Keep the composer installed in your project, then clone the repository for your project:
$ git clone https://github.com/Ueslen-dev/Basic-PHP-MVC-structure.git
After cloning the repository, run the following command on the terminal:
$ composer update
assets:
Assets used to build the application (JS, CSS, IMG etc ...)
Model:
Persistence files with the database
View
Files HTML
Controller
Application drivers
Core
Application working structure
Routes
Application route management
config.php
Database configuration
environment.php
Setting up the application environment
index.php
One of the main files of the structure, responsible for requesting important dependencies for the operation of the application.