- Laravel 11 backend with API REST - React 18 + TypeScript + Vite frontend - Multi-parser architecture for accounting systems (CONTPAQi, Aspel, SAP) - 27+ financial metrics calculation - PDF report generation with Browsershot - Complete documentation (10 documents) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
27 lines
735 B
PHP
27 lines
735 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
'name' => env('APP_NAME', 'Horux Strategy'),
|
|
'env' => env('APP_ENV', 'production'),
|
|
'debug' => (bool) env('APP_DEBUG', false),
|
|
'url' => env('APP_URL', 'http://localhost'),
|
|
'frontend_url' => env('FRONTEND_URL', 'http://localhost:5173'),
|
|
'timezone' => 'America/Mexico_City',
|
|
'locale' => 'es',
|
|
'fallback_locale' => 'en',
|
|
'faker_locale' => 'es_MX',
|
|
'cipher' => 'AES-256-CBC',
|
|
'key' => env('APP_KEY'),
|
|
'previous_keys' => [
|
|
...array_filter(
|
|
explode(',', env('APP_PREVIOUS_KEYS', ''))
|
|
),
|
|
],
|
|
'maintenance' => [
|
|
'driver' => env('APP_MAINTENANCE_DRIVER', 'file'),
|
|
'store' => env('APP_MAINTENANCE_STORE', 'database'),
|
|
],
|
|
|
|
];
|