Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abhilash26/ineevio
A custom PHP MVC framework for basic web needs.
https://github.com/abhilash26/ineevio
mvc mvc-framework php php-frameworks routing
Last synced: 10 days ago
JSON representation
A custom PHP MVC framework for basic web needs.
- Host: GitHub
- URL: https://github.com/abhilash26/ineevio
- Owner: abhilash26
- Created: 2019-09-21T15:15:52.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-09-21T15:16:59.000Z (over 5 years ago)
- Last Synced: 2024-02-03T09:24:08.255Z (almost 1 year ago)
- Topics: mvc, mvc-framework, php, php-frameworks, routing
- Language: PHP
- Homepage:
- Size: 7.81 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ineevio
A custom made php MVC framework for small projects.
What it includes?
1. Autoloading: A namespace based autoloading system.
2. Routing: A basic GET/ POST routing.
3. MVC dispatching: A dispatch system, which generally calls controller which is registered for that path.
4. Database: A PDO wrapper class to use PDO object without any fuss.
5. Exception Handling: A custom made global exception handler.
6. Custom Exceptions: An error class "Custom Exception" to extend custom made error messages.
7. Request data handling: A Request class to handle input parameters, input headers, querystring.
8. Templating: A template class to include .art.php view files and pass controller data to the view.The work is in progress. Suggestions are welcome.