Project developed with help of some packages, which are: "doctrine/orm"
, "phpoffice/phpexcel"
and "phpmailer/phpmailer"
.
Pre requirements
.
├── database-scripts/ - script.sql file is here
├── frontend-dev/
| └── src/ - files for the frontend
└── web-app/
├── app/ - similar structure MVC
├── boostrap/ - config files
└── public/ - project index
Front-End
The files used for the frontend are in "frontend-dev/src/"
.
Run npm install && bower install
in the "frontend-dev"
folder for sync with "web-app/public/"
.
Back-End
The sql script is in the "database-scripts"
folder.
Run composer install
in the "web-app"
folder.
Change the database and smtp settings in the "web-app/bootstrap/app-config.php"
.
After that run php -S localhost:8000
in the "web-app/public/"
folder