Woski is a simple fast PHP framework for the Realm
The Project
Clone the repository
$ composer create-project clintonnzedimma/woski myApp dev-masterCD into your projects directory and run your application using the command below
$ php woski --run --port 3030Now you open http://localhost:3030 in your browser to see your application.
Open your index.php file, and add a new route
$app->get('/hello', function ($req, $res) {
echo 'Hello Realm';
});Visit http://localhost:3030/hello. You're done.
