Intégration fonctionnalites V1

This commit is contained in:
bastien
2026-07-04 22:30:18 +02:00
parent 55a558b536
commit 10ee859602
54 changed files with 4802 additions and 1018 deletions
+1 -1
View File
@@ -65,7 +65,7 @@ return [
|
*/
'timezone' => 'UTC',
'timezone' => env('APP_TIMEZONE', 'Europe/Paris'),
/*
|--------------------------------------------------------------------------
+2
View File
@@ -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
View File
@@ -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'),
],
];