17 lines
539 B
PHP
17 lines
539 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'name' => getenv('APP_NAME') ?: 'Uruk International Prize',
|
|
'env' => getenv('APP_ENV') ?: 'development',
|
|
'debug' => (bool)(getenv('APP_DEBUG') ?: true),
|
|
'url' => getenv('APP_URL') ?: 'http://localhost:8000',
|
|
'secret' => getenv('APP_SECRET') ?: 'uruk_default_super_secret_signing_key_32_chars_min',
|
|
'timezone' => 'Asia/Baghdad',
|
|
'currency' => 'IQD',
|
|
'membership_price_usd' => 100.00,
|
|
'membership_price_iqd' => 132000.00,
|
|
'membership_duration_years' => 2,
|
|
];
|