feat: subscriptions
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'trial_days' => (int) env('BILLING_TRIAL_DAYS', 7),
|
||||
|
||||
'identity_verification' => [
|
||||
'disk' => 'identity_documents',
|
||||
'temporary_url_minutes' => 5,
|
||||
],
|
||||
];
|
||||
@@ -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,
|
||||
],
|
||||
|
||||
],
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user