2017 © Pedro Peláez
 

framework phpburn

A kickass PHP HMVC framework built to be light and fast

image

phpburn/phpburn

A kickass PHP HMVC framework built to be light and fast

  • Wednesday, July 20, 2016
  • by Klederson Bueno
  • Repository
  • 5 Watchers
  • 17 Stars
  • 8 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 13 Forks
  • 12 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Deprecated

While was a great pleasure for me create, maintain and take care of this project since 2008 now it's time to say goodbye, for a long time thousands of projects and people used, inquired, complained and congratulate this project but after ---many--- some years without proper evolution and maintenance I've decided to close this project once it's really deprecated and better tools are available in the market., (*1)

I'd like to thank you all for everything, all the support, the messages and the care., (*2)

Live long and prosper! 🖖🏽, (*3)

phpBurn

Build Status, (*4)

Developed by the manteiner Klederson Bueno, phpBurn is a FRAMEWORK for PHP usage, initialy born as an ORM like hibernate and Nhibernate., (*5)

It allows you to create more and faster using OO concepts and patterns with a log of time gain. Using resources for MVC (Model View Controller) phpBurn will make your programming more easy, quick and fun., (*6)

Now you can found this project hosted both GitHub and SourceForge at git version control., (*7)

Instalation

To install PhpBURN is quite easy first you need to fork or clone PhpBURN code from PhpBURN Official Repository and than you need to use it into your include path by doing in one of this ways:, (*8)

You can also go to PhpBURN Official Repository and click in DOWNLOAD and choose zip or tar.gz version from that branch., (*9)

OBS:

Please note master is equivalent to dev or in-development version and sometimes something can go wrong using it ( some bug or something ) we strongly recommed you to use the stable version in stable branch., (*10)

php.ini

Should look something like this: include_path = ".:/php/includes:/Volumes/projects/includes/phpBurn/", (*11)

or (Windows): include_path = ".;c:\php\includes;c:\Projects\includes\phpBurn", (*12)

ini_set()

ini_set('include_path',get_include_path().":/Volumes/projects/includes/phpBurn");

or (Windows): ini_set('include_path',get_include_path().":C:\Projects\includes\phpBurn");, (*13)

require_once("/Volumes/projects/includes/phpBurn/app/phpBurn.php");

Generate a application structure

Just enter in your shell and type:, (*14)

php YOURPHPBURNFOLDER/app/generator.generate.php

And then follow the steps and "voilà" now you have a brand new site working ( if you go to your browser and type http://localhost/mynewprojectfolder ) you sould see a wellcome page., (*15)

If you want to use only the ORM you should include and start your phpBurn ( see below ), (*16)

Usage (FULL - index.php - ALREADY INSTALLED when generator.php is used)


<?php
ob_start();
################################
# Hooks
################################
define('SYS_USE_FIREPHP',true,true);

################################
# Including required files
################################
require_once('app/phpBurn.php');
require_once('config.php');

################################
# Starting application
################################
PhpBURN::startApplication();

################################
# Sending a End of File
################################
PhpBURN_Message::output('[!EOF!]');
?>

Usage (ORM ONLY)

################################
# Hooks
################################
define('SYS_USE_FIREPHP',false,true);

################################
# Including required files
################################
require_once('app/phpBurn.php');
require_once('config.php');

################################
# Start PhpBURN needed resources
################################
PhpBURN::enableAutoload();

Documentation

Official Links:

The Versions

20/07 2016

dev-master

9999999-dev http://www.phpburn.com

A kickass PHP HMVC framework built to be light and fast

  Sources   Download

GPL2

The Requires

  • php >=5.3.0

 

by Avatar Klederson Bueno

orm framework rest hmvc controller persistence routes phpburn

05/06 2013

1.6

1.6.0.0 http://www.phpburn.com

A kickass PHP HMVC framework built to be light and fast

  Sources   Download

GPL2

The Requires

  • php >=5.3.0

 

by Avatar Klederson Bueno

orm framework rest hmvc controller persistence routes phpburn