Skip to content

raisoblast/rakitan2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published