Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/misiektedi/tediframework
Simple framework for PHP with routing and views
https://github.com/misiektedi/tediframework
framework php
Last synced: 2 months ago
JSON representation
Simple framework for PHP with routing and views
- Host: GitHub
- URL: https://github.com/misiektedi/tediframework
- Owner: misiektedi
- Created: 2024-11-12T15:00:44.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-12T15:12:48.000Z (2 months ago)
- Last Synced: 2024-11-12T16:19:39.989Z (2 months ago)
- Topics: framework, php
- Language: PHP
- Homepage:
- Size: 51.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TediFramework
### Simple framework for PHP with routing and views## Framework structure
1. `tedi-config`
This directory contains **configuration files** for the TediFramework.
2. `tedi-logic`
This folder holds all the **core logic files**. It includes controllers, services, and business logic that define how the application processes data and interacts with the database. This is where the core functionality and algorithms are implemented.
5. `tedi-routing`
This path manages **routing definitions** for the application. It contains files that map URLs to specific controllers or handlers, defining how requests are processed and which functions are executed for each route.
6. `tedi-views`
This directory contains **view templates** for the frontend. It includes HTML files that are **intermixed with PHP code**, enabling dynamic content rendering. The views define how data should be presented to users, often using placeholders for data populated by the application logic.