Skip to content

iosley/Slim-Auto-Routes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

15 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Slim-Auto-Routes

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.

About

The middleware for auto load routes to Slim Framework

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages