Jarvis - PHP micro framework "Hello world!" with Jarvis require_once __DIR__.'/vendor/autoload.php'; $jarvis = new Jarvis\Jarvis(); $jarvis->router->addRoute('get', '/', function () { return 'Hello world!'; }); $response = $jarvis->analyze(); $response->send();