/jarvis

Jarvis is a PHP micro framework.

Primary LanguagePHP

Jarvis - PHP micro framework

Code Climate Test Coverage Build Status SensioLabsInsight

"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();