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
Requires
- php: >=5.4.0
- twig/twig: ~1.0
This package is not auto-updated.
Last update: 2025-01-24 21:06:22 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();