raisoblast / rakitan2

Very simple component-based PHP framework

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

rakitan2

rakitan2

Very simple component-based PHP framework

Base Component

Installation

  • Clone the repo
$ git clone https://github.com/raisoblast/rakitan2.git
$ cd rakitan2
$ composer install
  • Run using php built-in web server:
$ cd public
$ php -S localhost:8000

Open http://localhost:8000 in a browser.

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>

Documentation

not yet

About

Very simple component-based PHP framework

License:MIT License


Languages

Language:PHP 73.0%Language:CSS 27.0%