https://github.com/zainabed/php-zframe
PHP MVC Framework
https://github.com/zainabed/php-zframe
Last synced: 10 months ago
JSON representation
PHP MVC Framework
- Host: GitHub
- URL: https://github.com/zainabed/php-zframe
- Owner: zainabed
- Created: 2013-10-04T12:14:49.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-06-10T08:18:37.000Z (about 12 years ago)
- Last Synced: 2024-04-11T08:52:55.785Z (about 2 years ago)
- Language: PHP
- Size: 230 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
php-zFrame
==========
PHP MVC Framework
Lightweight PHP Framework which follows MVC pattern
Installation
------------
git clone https://github.com/zainabed/php-zFrame
and update httpd.conf settings as
<VirtualHost *:8081>
ServerName domain_name
DocumentRoot "path of cloned repository"
DirectoryIndex index.php
<Directory " path of cloned repository ">
AllowOverride All
Allow from All
</Directory>
</VirtualHost>
Directory Structure
-------------------
- App
- Module (Module name e.g Demo
- Block ( Independent Partials e.g Sidebars, Ajax Controller, JSON REST API )
- Config ( Module Routing, Asset {View, Layout, Skin} configurations
- Controller
- Layout (Module based Layout files)
- Model (Module based Model Classes)
- View (Module based Views)
- Cache
- Routing Cache (At the moment)
- Config
- Application, Module, Database Configurations
- Lib
- Application Related Libraries ( Base Controller, Base Block, Routing, Http, View )
- Skin
- Javascript, CSS files
- Web
- Other global access PHP files