whisper-money/config/subscriptions.php

46 lines
1.3 KiB
PHP

<?php
return [
/*
|--------------------------------------------------------------------------
| Subscriptions Enabled
|--------------------------------------------------------------------------
|
| This option controls whether the subscription system is enabled. When
| disabled, all users will have access to all features without needing
| to subscribe. This is useful for development or self-hosted instances.
|
*/
'enabled' => env('SUBSCRIPTIONS_ENABLED', false),
/*
|--------------------------------------------------------------------------
| Stripe Price IDs
|--------------------------------------------------------------------------
|
| These are the Stripe Price IDs for the different subscription plans.
| You can find these in your Stripe Dashboard under Products.
|
*/
'prices' => [
'pro_monthly' => env('STRIPE_PRO_PRICE_ID', 'price_1SbJYkLNIsVExnyvAJhUoSeB'),
],
/*
|--------------------------------------------------------------------------
| Stripe Product IDs
|--------------------------------------------------------------------------
|
| These are the Stripe Product IDs for reference.
|
*/
'products' => [
'pro' => env('STRIPE_PRO_PRODUCT_ID', 'prod_TYQPg0s9rpxNsU'),
],
];