wilbros/slash

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

Maintainers

Package info

github.com/wilbros/slash

Issues

pkg:composer/wilbros/slash

Statistics

Installs: 8

Dependents: 0

Suggesters: 0

Stars: 2

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

This package is not auto-updated.

Last update: 2026-03-07 02:07:15 UTC


README

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();