wilbros/slash

There is no license information available for the latest version (dev-master) of this package.

dev-master 2016-07-22 03:52 UTC

This package is not auto-updated.

Last update: 2024-04-19 17:44:37 UTC


README

Slash / A simple Web Framework =============================

Slash is a PHP micro-framework to develop websites:

<?php

require_once __DIR__.'/vendor/autoload.php';

$app = new \Slash\Slash(include 'config.php', [
    new \Slash\Module\Impl\PDOModule(),
    new \Slash\Module\Impl\RedisModule()
]);

$app->get('/', function() use($app) {
    return 'Hello World';
});

$app->run();