wilbros / slash
Installs: 8
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
pkg:composer/wilbros/slash
Requires
- php: >=5.4.0
- twig/twig: ~1.0
This package is not auto-updated.
Last update: 2025-10-04 00:08:03 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();