定制 iosley/slim-auto-routes 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

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

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2015-10-21