Just 2 simple class to help you develop easy and fast websites and webservices for webs 2.0 and allow you to create your own microframework easily.
2- Routing
3- Controllers
4- Views
5- More
//index.php file
require_once('src/OnePHP/one_framework.php');
$app = new \OnePHP\App();
$app->get('/',function() use ($app){//Action
echo 'Hello world';
});
$app->listen();