technobureau/mezzio-auth

Doctrine Based Authentication for Mezzio

Installs: 6

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/technobureau/mezzio-auth

dev-main 2022-01-18 18:04 UTC

This package is auto-updated.

Last update: 2025-09-19 01:57:42 UTC


README

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);