Intégration fonctionnalites V1
This commit is contained in:
+1
-1
@@ -65,7 +65,7 @@ return [
|
||||
|
|
||||
*/
|
||||
|
||||
'timezone' => 'UTC',
|
||||
'timezone' => env('APP_TIMEZONE', 'Europe/Paris'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
|
||||
@@ -20,6 +20,8 @@ return [
|
||||
|
||||
'payment' => [
|
||||
'default_provider' => env('LAVERIE_PAYMENT_PROVIDER', 'simulated'),
|
||||
'top_up_min' => (float) env('LAVERIE_TOP_UP_MIN', 5),
|
||||
'top_up_max' => (float) env('LAVERIE_TOP_UP_MAX', 150),
|
||||
],
|
||||
|
||||
'machine_api_key' => env('LAVERIE_MACHINE_API_KEY'),
|
||||
|
||||
+12
-12
@@ -2,18 +2,6 @@
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Third Party Services
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This file is for storing the credentials for third party services such
|
||||
| as Mailgun, Postmark, AWS and more. This file provides the de facto
|
||||
| location for this type of information, allowing packages to have
|
||||
| a conventional file to locate the various service credentials.
|
||||
|
|
||||
*/
|
||||
|
||||
'postmark' => [
|
||||
'key' => env('POSTMARK_API_KEY'),
|
||||
],
|
||||
@@ -35,4 +23,16 @@ return [
|
||||
],
|
||||
],
|
||||
|
||||
'stripe' => [
|
||||
'key' => env('STRIPE_KEY'),
|
||||
'secret' => env('STRIPE_SECRET'),
|
||||
'webhook_secret' => env('STRIPE_WEBHOOK_SECRET'),
|
||||
],
|
||||
|
||||
'nominatim' => [
|
||||
'url' => env('NOMINATIM_URL', 'https://nominatim.openstreetmap.org'),
|
||||
'user_agent' => env('NOMINATIM_USER_AGENT', 'LaverieBackOffice/1.0 (contact@laverie.local)'),
|
||||
'verify_ssl' => env('NOMINATIM_VERIFY_SSL', env('APP_ENV', 'production') !== 'local'),
|
||||
],
|
||||
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user