iosley/slim-auto-routes
最新稳定版本:1.0.1
Composer 安装命令:
composer require iosley/slim-auto-routes
包简介
The middleware for auto load routes to Slim Framework
README 文档
README
The middleware for auto load routes to Slim Framework
Installation
Using Composer (Recommended)
$ composer require iosley/slim-auto-routes
Usage
Just add your routes path to 'routes.path' in Slim config and add AutoRoutesMiddleware to slim middlerares stack.
Example
<?php
// index.php
$app = new \Slim\Slim();
$yourRoutesPath = 'routes';
$app->config('routes.path',$yourRoutesPath);
$app->add( new \Iosley\Slim\Provider\AutoRoutesMiddleware );
$app->run();
<?php
// routes/index.php
$app = \Slim\Slim::getInstance(); // need this, just if you change the variable name
$app->get('/', function() use ($app) {
echo 'Example of auto load routes to Slim Framework.'
});
License
The code is available at github project under MIT licence.
统计信息
- 总下载量: 41
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-10-21