Skip to content
This repository has been archived by the owner on Jul 13, 2024. It is now read-only.

Latest commit

 

History

History
66 lines (47 loc) · 939 Bytes

README.md

File metadata and controls

66 lines (47 loc) · 939 Bytes

This project is not compatible with PHP-8.

E-commerce

E-commerce site using custom php MVC framework.

Requirements

  • PHP 7.^
  • Composer 3.^

Installation


composer install

Setup Environment Variables


cp .env.example .env

Production

APP_DEBUG=Off

Status

  • Finished

Directory Structure


.
├── app
│   ├── classes
│   ├── config
│   ├── controllers
│   ├── functions
│   ├── models
│   └── routing
├── bootstrap
│   └── cache
├── public
│   └── assets
│       ├── css
│       ├── images
│       ├── js
│       ├── sass
│       └── uploads
└── resources
    └── views
        ├── admin
        │   ├── category
        │   └── product
        ├── layouts
        └── user