https://github.com/zeroc0d3/native-mvc
PHP Native MVC
https://github.com/zeroc0d3/native-mvc
mvc mvc-framework native php
Last synced: 7 days ago
JSON representation
PHP Native MVC
- Host: GitHub
- URL: https://github.com/zeroc0d3/native-mvc
- Owner: zeroc0d3
- Created: 2017-07-09T01:32:07.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-07-09T06:50:22.000Z (almost 8 years ago)
- Last Synced: 2025-03-31T00:24:51.477Z (about 1 month ago)
- Topics: mvc, mvc-framework, native, php
- Language: PHP
- Size: 14.6 KB
- Stars: 6
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# native-mvc
PHP Native MVC (Model-View-Controller) with composer dependencies.## How To Use
* Clone this repo
* Install composer
* Running composer install
```
composer install
```
* Copy & modified configuration
```
cp .env.example .env
```## Database Configuration
Modified your .env file with your database configuration
```
APP_DRIVER = "mysql"
APP_HOST = "127.0.0.1"
APP_DATABASE = "your-database"
APP_USERNAME = "root"
APP_PASSWORD = "your-password"
APP_CHARSET = "utf8"
APP_COLLATION = "utf8_unicode_ci"
```