summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/app.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/config/app.php b/config/app.php
index efe745e8..214acb1c 100644
--- a/config/app.php
+++ b/config/app.php
@@ -20,6 +20,7 @@ return [
\Engelsystem\Helpers\TranslationServiceProvider::class,
\Engelsystem\Http\ResponseServiceProvider::class,
\Engelsystem\Http\Psr7ServiceProvider::class,
+ \Engelsystem\Helpers\AuthenticatorServiceProvider::class,
\Engelsystem\Renderer\TwigServiceProvider::class,
\Engelsystem\Middleware\RouteDispatcherServiceProvider::class,
\Engelsystem\Middleware\RequestHandlerServiceProvider::class,
@@ -30,7 +31,6 @@ return [
// Application middleware
'middleware' => [
-
// Basic initialization
\Engelsystem\Middleware\SendResponseHandler::class,
\Engelsystem\Middleware\ExceptionHandler::class,
@@ -41,6 +41,8 @@ return [
// The application code
\Engelsystem\Middleware\ErrorHandler::class,
\Engelsystem\Middleware\RouteDispatcher::class,
+
+ // Handle request
\Engelsystem\Middleware\RequestHandler::class,
],
];