You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
557 B
PHP
14 lines
557 B
PHP
<?php
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| To publish the config files
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Execute the command below do publish the config file
|
|
| php artisan vendor:publish --provider="Ae3\LaravelLogsLayer\app\Providers\LogsLayerServiceProvider" --tag="config"
|
|
*/
|
|
|
|
return [
|
|
'sensitive_data' => env('LOGS_LAYER_SENSITIVE_DATA', 'password,password_confirmation,token,api_token,api_key,access_token,refresh_token,authorization_code,client_secret'),
|
|
];
|