17 lines
574 B
PHP
17 lines
574 B
PHP
<?php
|
|
|
|
return [
|
|
'revenuecat' => [
|
|
'api_url' => env('REVENUECAT_API_URL', 'https://api.revenuecat.com/v1'),
|
|
'secret_key' => env('REVENUECAT_SECRET_KEY'),
|
|
'webhook_authorization' => env('REVENUECAT_WEBHOOK_AUTHORIZATION'),
|
|
'subscription_entitlement' => env('REVENUECAT_SUBSCRIPTION_ENTITLEMENT', 'bowli Pro'),
|
|
'certification_entitlement' => env('REVENUECAT_CERTIFICATION_ENTITLEMENT', 'certification'),
|
|
],
|
|
|
|
'identity_verification' => [
|
|
'disk' => 'identity_documents',
|
|
'temporary_url_minutes' => 5,
|
|
],
|
|
];
|