happyoniens / hulk
PHP MVC Framework
0.0.2
2016-05-08 18:05 UTC
Requires
- filp/whoops: ^2.0
Requires (Dev)
- phpunit/phpunit: 5.1.*
- squizlabs/php_codesniffer: 2.*
This package is not auto-updated.
Last update: 2024-10-26 18:54:42 UTC
README
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