Very simple component-based PHP framework
- HTTP layer: zendframework/zend-diactoros
- Middleware: PSR-15 HTTP Middleware
- Middleware dispatcher: oscarotero/middleland
- Dependecy injector: php-di/php-di
- Router: altorouter/altorouter
- Template engine: league/plates
- 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.
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>
not yet