Files
cheerstothe_season_2.0/config/constants.php
2024-07-02 19:20:18 +05:30

26 lines
590 B
PHP

<?php
/*
* created by : Chandan Yadav
* Created On : 03-November-2023
* Uses : To display message on admin panel
*/
return [
'UTF8_ENABLED' => TRUE,
'DIMENTIONS' => [
"THUMBNAIL" => "300*160 pixels (3:2), Max Size 2MB and .jpg format image",
],
'SIZE' => [
"THUMBNAIL" => "7168"
],
'PLATFORM' => ['ios', 'android', 'web'],
'subscription' => [
'stripe_private_key' => env('STRIPE_KEY'),
'stripe_secret_key' => env('STRIPE_SECRET'),
'webhook_secret' => env('STRIPE_WEBHOOK_SECRET'),
],
];