Initial V2 commit

This commit is contained in:
Hamza-Ayed
2026-04-22 21:59:56 +03:00
commit 4706404488
53 changed files with 4392 additions and 0 deletions

20
config/app.php Normal file
View File

@@ -0,0 +1,20 @@
<?php
return [
'name' => env('APP_NAME', 'IntaleqV2'),
'env' => env('APP_ENV', 'production'),
'debug' => (bool) env('APP_DEBUG', false),
'url' => env('APP_URL', 'https://api-v2.intaleq.xyz'),
'timezone' => 'UTC',
'locale' => 'ar',
'fallback_locale' => 'en',
'faker_locale' => 'ar_SA',
'cipher' => 'AES-256-CBC',
'key' => env('APP_KEY'),
'previous_keys' => [
...array_filter(explode(',', env('APP_PREVIOUS_KEYS', ''))),
],
'maintenance' => [
'driver' => 'file',
],
];