diff options
author | Camil Staps | 2015-04-26 12:37:58 +0200 |
---|---|---|
committer | Camil Staps | 2015-04-26 12:37:58 +0200 |
commit | bcb71edf812c9c41833d5a66c39844ec35466190 (patch) | |
tree | 1a7d04482ca4676b4384fce3367f49e67b8b10f6 /src/config | |
parent | migrations have package's namespace for compatibility (diff) |
Fixed basic authentication
Diffstat (limited to 'src/config')
-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; - }, - ] - -]; |