diff --git a/config/concord.php b/config/concord.php index c42dedbaa..3c38cc352 100755 --- a/config/concord.php +++ b/config/concord.php @@ -1,6 +1,9 @@ Webkul\Core\CoreConvention::class, + 'modules' => [ /** * Example: diff --git a/config/debugbar.php b/config/debugbar.php index af3eb405b..d1fcc58b0 100755 --- a/config/debugbar.php +++ b/config/debugbar.php @@ -16,8 +16,7 @@ return [ 'enabled' => env('DEBUGBAR_ENABLED', null), 'except' => [ - 'telescope*', - 'horizon*' + 'telescope*' ], /* @@ -124,7 +123,6 @@ return [ 'config' => false, // Display config settings 'cache' => false, // Display cache events 'models' => true, // Display models - 'livewire' => true, // Display Livewire (when available) ], /* @@ -143,13 +141,12 @@ return [ 'db' => [ 'with_params' => true, // Render SQL with the parameters substituted 'backtrace' => true, // Use a backtrace to find the origin of the query in your files. - 'backtrace_exclude_paths' => [], // Paths to exclude from backtrace. (in addition to defaults) 'timeline' => false, // Add the queries to the timeline 'explain' => [ // Show EXPLAIN output on queries 'enabled' => false, 'types' => ['SELECT'], // // workaround ['SELECT'] only. https://github.com/barryvdh/laravel-debugbar/issues/888 ['SELECT', 'INSERT', 'UPDATE', 'DELETE']; for MySQL 5.6.3+ ], - 'hints' => false, // Show hints for common mistakes + 'hints' => true, // Show hints for common mistakes ], 'mail' => [ 'full_log' => false @@ -202,14 +199,4 @@ return [ | To override default domain, specify it as a non-empty value. */ 'route_domain' => null, - - /* - |-------------------------------------------------------------------------- - | DebugBar theme - |-------------------------------------------------------------------------- - | - | Switches between light and dark theme. If set to auto it will respect system preferences - | Possible values: auto, light, dark - */ - 'theme' => 'auto', ]; diff --git a/config/elastic.client.php b/config/elastic.client.php index f627ebab8..13fb60386 100644 --- a/config/elastic.client.php +++ b/config/elastic.client.php @@ -1,4 +1,4 @@ - [ diff --git a/config/elastic.scout_driver.php b/config/elastic.scout_driver.php index a5d123aa8..b28fe35a3 100644 --- a/config/elastic.scout_driver.php +++ b/config/elastic.scout_driver.php @@ -1,5 +1,5 @@ - env('ELASTIC_SCOUT_DRIVER_REFRESH_DOCUMENTS', false), + 'refresh_documents' => env('ELASTIC_SCOUT_DRIVER_REFRESH_DOCUMENTS', false) ]; diff --git a/config/tinker.php b/config/tinker.php index c187942d0..0fdd538d6 100755 --- a/config/tinker.php +++ b/config/tinker.php @@ -19,7 +19,7 @@ return [ /* |-------------------------------------------------------------------------- - | Auto Aliased Classes + | Alias Whitelist |-------------------------------------------------------------------------- | | Tinker will not automatically alias classes in your vendor namespaces @@ -34,7 +34,7 @@ return [ /* |-------------------------------------------------------------------------- - | Classes That Should Not Be Aliased + | Alias Blacklist |-------------------------------------------------------------------------- | | Typically, Tinker automatically aliases classes as you require them in diff --git a/packages/Webkul/Core/src/Config/concord.php b/packages/Webkul/Core/src/Config/concord.php index c42dedbaa..3c38cc352 100644 --- a/packages/Webkul/Core/src/Config/concord.php +++ b/packages/Webkul/Core/src/Config/concord.php @@ -1,6 +1,9 @@ Webkul\Core\CoreConvention::class, + 'modules' => [ /** * Example: diff --git a/packages/Webkul/Core/src/CoreConvention.php b/packages/Webkul/Core/src/CoreConvention.php new file mode 100644 index 000000000..9071f058d --- /dev/null +++ b/packages/Webkul/Core/src/CoreConvention.php @@ -0,0 +1,16 @@ +