Wallogit.com
2017 © Pedro Peláez
LightPHP simple request and response framework
A lightweight PHP framework built with scalability in mind., (*1)
Framework comes pre loaded with an index route and a core service., (*2)
http://127.0.0.1:8080/
services, (*3)
return [
'routes' => [
[
'method' => ['GET'],
'name' => 'index',
'route' => '/',
'callable' => [
'controller' => 'LightPHP\MVC\Controller\IndexController',
'namespace' => 'LightPHP\MVC\Controller',
'action' => 'index',
'view' => 'index/index'
]
],
],
'services' => [
'core_service' => 'LightPHP\Services\CoreService'
],
];