Skip to content

TechnoBureau/mezzioAuth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Mezzio Doctrine Based Authentication

It's using mezzio authentication based on Doctrine ORM. For migration or table creation using doctrine orm

  • Add below entry on routes.php to register router for authentication

    (new TechnoBureau\mezzioAuth\ConfigProvider())->registerRoutes($app, '/user');

  • Add Below Entry on pipeline.php before RouteMiddleware to register middleware globally for all routes.

    $app->pipe(SessionMiddleware::class); $app->pipe(FlashMessageMiddleware::class);

  • Add below entry on pipeline.php before DispatchMiddleware to register middleware globally for all routers.

    $app->pipe(UserMiddleware::class);

About

Mezzio Authentication with Authorization using Doctrine

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published