aboutsummaryrefslogtreecommitdiff
path: root/src/config
diff options
context:
space:
mode:
authorCamil Staps2015-04-26 12:37:58 +0200
committerCamil Staps2015-04-26 12:37:58 +0200
commitbcb71edf812c9c41833d5a66c39844ec35466190 (patch)
tree1a7d04482ca4676b4384fce3367f49e67b8b10f6 /src/config
parentmigrations have package's namespace for compatibility (diff)
Fixed basic authentication
Diffstat (limited to 'src/config')
-rw-r--r--src/config/auth.php34
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;
- },
- ]
-
-];