An open API service indexing awesome lists of open source software.

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

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