raisoblast/rakitan

Very simple component-based PHP web framework

dev-master 2016-06-17 02:26 UTC

This package is not auto-updated.

Last update: 2024-04-19 19:23:35 UTC


README

Build Status

rakitan

rakitan

Very simple component-based PHP framework

Base Component

Installation

  • Clone the repo
$ git clone https://github.com/raisoblast/rakitan.git
$ cd rakitan
$ composer install
  • or using composer
$ composer create-project raisoblast/rakitan

Web server configuration

Apache

mod_rewrite must be enabled

  • apache 2.2
<Directory "/var/www/rakitan">
    AllowOverride All
    Order allow,deny
    Allow from All
</Directory>
  • apache 2.4
<Directory "/var/www/rakitan">
    AllowOverride All
    Require all granted
</Directory>

Nginx

in progress...

Documentation

in progress...