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.
##Features
- Input Validation
- Query Builder
- Form from Model
- Template Engine
- Routing
- ...
##Contributors
- happyoniens
- gabriellovric
- Saphatonic