-- Add module
- phalcon module --name=backend --namespace=Webapp\Backend --output=apps
- Add to services.php $router->add("/backend", array( 'module' => 'backend', 'namespace' => 'Webapp\Backend\Controllers', 'controller' => 'index', 'action' => 'index', ));
- Add to modules.php 'backend' => array( 'className' => 'Webapp\Backend\Module', 'path' => DIR . '/../apps/backend/Module.php' )