Install - Philiphil/Kult-Engine GitHub Wiki
So, you're here because you want to try out KE (Kult Engine) ?
Nice, let's do it step by step.
#First thing first, Download.
KE is available on github only.
Since I wont commit untested or not working files, you may download the master branch.
But, you'd better download the lastest release version available.
Once downloaded, KE should be unzip'd in the parent folder of your website's root directory.
Now your folders should look like this.
.\website\www\
.\website\controller\
.\website\model\
.\website\config.php
#Now, let's config.php KE.
Open .\website\config.php and edit it, if you havent renamed or moved anything, it should be quick.
#Now, let's run it.
lets create .\website\www\test.php
The first step here is to include .\website\www\invoker.class.php
Second step is to shortcut KE's namespace, its not mendatory but k\ is really shorter than kult_engine, but whatever.
3, invoker.class.php is included, now let's start invoking.
kult_engine\invoker::require_basics();
require_basics is the standard way to start KE, if it worked, you can try kult_engine\hello(); to see how polite KE can be when he's working.
##test.php
include '../config.php';
use kult_engine as k;
k\invoker::require_basics();