PHP MVC Framework

0.0.2 2016-05-08 18:05 UTC

This package is not auto-updated.

Last update: 2024-05-11 16:39:58 UTC


README

Build Status

PHP MVC Framework inspired by Flight

###Get started

####Variables Save variable in Hulk

Hulk\Hulk::set('name','value');

Get saved variable

Hulk\Hulk::get('name');

####Add path to autloading

Hulk\Hulk::path('foo/');

####Register class

Hulk\Hulk::register('name', 'className', ['params']);

####Use registered class

$class = Hulk\Hulk::name();

or run functions directly

Hulk\Hulk::name()->myFunc();

##Installation

composer require happyoniens/hulk

##Development If you want to check if the written code passes the codestyle guidelines and the unit tests you can run the command composer check in your development directory.

CMD composer check

##Features

  • Input Validation
  • Query Builder
  • Form from Model
  • Template Engine
  • Routing
  • ...

##Contributors

  • happyoniens
  • gabriellovric
  • Saphatonic