feat: subscriptions
CI / 🧪 Tests Laravel (push) Successful in 2m48s
CI / 🐳 Build & Push Image (push) Successful in 3m0s

This commit is contained in:
2026-08-07 11:53:46 +02:00
parent 99cb0e63e6
commit 2ece4b6e3e
51 changed files with 1489 additions and 254 deletions
+20
View File
@@ -1,5 +1,10 @@
<?php
$identityDocumentsDriver = env('FILESYSTEM_DISK', 'local');
$identityDocumentsRoot = $identityDocumentsDriver === 'local'
? storage_path('app/private/identity-documents')
: 'identity-documents';
return [
/*
@@ -60,6 +65,21 @@ return [
'report' => false,
],
'identity_documents' => [
'driver' => $identityDocumentsDriver,
'root' => $identityDocumentsRoot,
'serve' => true,
'key' => env('AWS_ACCESS_KEY_ID'),
'secret' => env('AWS_SECRET_ACCESS_KEY'),
'region' => env('AWS_DEFAULT_REGION'),
'bucket' => env('AWS_BUCKET'),
'endpoint' => env('AWS_ENDPOINT'),
'use_path_style_endpoint' => env('AWS_USE_PATH_STYLE_ENDPOINT', false),
'visibility' => 'private',
'throw' => true,
'report' => true,
],
],
/*