Konstrukt is a minimalistic framework which provides a foundation on which to build rather than a boxed solution to all problems. It focuses on the controller layer, and tries to encourage the developer to deal directly with the HTTP protocol instead of abstracting it away. Konstrukt uses a hierarchical controller pattern, which provides a greater level of flexibility than the popular routed front controller frameworks.
You can read the documentation on konstrukt.dk
The easiest way to install Konstrukt, is through PEAR. In a console, type the following:
sudo pear channel-discover pearhub.org
sudo pear install pearhub/konstrukt
You can create a new project by cloning the starterpack under /examples/
:
Download the newest version of konstrukt from: http://github.com/troelskn/konstrukt/downloads. Then copy starterpack_default
:
cp -R examples/starterpack_default /var/www/foo
Replace /var/www/foo
with the location where you want your app to reside.