diff options
Diffstat (limited to 'src/config/auth.php')
-rw-r--r-- | src/config/auth.php | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/src/config/auth.php b/src/config/auth.php deleted file mode 100644 index ee836e2..0000000 --- a/src/config/auth.php +++ /dev/null @@ -1,34 +0,0 @@ -<?php - -return [ - - /* - |-------------------------------------------------------------------------- - | Debug Mode - |-------------------------------------------------------------------------- - | - | Enabling debug mode will result in error responses caused by thrown - | exceptions to have a "debug" key that will be populated with - | more detailed information on the exception. - | - */ - - 'debug' => true, - - /* - |-------------------------------------------------------------------------- - | Authentication Providers - |-------------------------------------------------------------------------- - | - | The authentication providers that should be used when attempting to - | authenticate an incoming API request. - | - */ - - 'auth' => [ - 'custom' => function ($app) { - return new AuthProvider; - }, - ] - -]; |