Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/muntashirakon/akonframework
A simple PHP-MVC style framework.
https://github.com/muntashirakon/akonframework
framework php php-framework
Last synced: 30 days ago
JSON representation
A simple PHP-MVC style framework.
- Host: GitHub
- URL: https://github.com/muntashirakon/akonframework
- Owner: MuntashirAkon
- License: mit
- Created: 2017-07-17T17:55:46.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-14T04:12:56.000Z (over 6 years ago)
- Last Synced: 2024-04-14T02:32:36.052Z (9 months ago)
- Topics: framework, php, php-framework
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# AkonFramework
A simple PHP-MVC style framework that can be used for many purposes if utilized properly._Note: This project is my own creation and originally intended for my own uses_
## Instructions
##### Run server```bash
php -S 127.0.0.1:8080 router.php
```
(Also works with Apache2 when `htaccess` and `modrewrite` enabled)##### About MVC pattern
Use the `index.php` located in the `public` directory to add routes (using `Route::add()`). Models, Views and Controllers can be added in their respective directories located in the `App` folder. For Views, take a look at the readme file in the `App/Views` directory.