Update authentication logic and SDK fixes

This commit is contained in:
Hamza-Ayed
2026-04-24 15:12:12 +03:00
parent 2745b307a9
commit 4534e8769b
18 changed files with 198 additions and 78 deletions

View File

@@ -30,12 +30,12 @@ return [
'port' => env('DB_PRIMARY_PORT', '3306'),
'database' => env('DB_PRIMARY_NAME_V2', 'intaleqDBV2'),
'username' => env('DB_PRIMARY_USER_V2', 'intaleqUserV2'),
'password' => env('DB_PRIMARY_PASS_V2', 'cqdEGlg'),
'password' => env('DB_PRIMARY_PASS_V2', ''),
'unix_socket' => env('DB_SOCKET', ''),
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_general_ci',
'prefix' => '',
'strict' => false,
'strict' => true,
'engine' => 'InnoDB',
'timezone' => '+03:00',
'options' => extension_loaded('pdo_mysql') ? [
@@ -61,7 +61,7 @@ return [
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_general_ci',
'prefix' => '',
'strict' => false,
'strict' => true,
'engine' => 'InnoDB',
'timezone' => '+03:00',
'options' => extension_loaded('pdo_mysql') ? [
@@ -86,7 +86,7 @@ return [
'charset' => 'utf8mb4',
'collation' => 'utf8mb4_general_ci',
'prefix' => '',
'strict' => false,
'strict' => true,
'engine' => 'InnoDB',
'timezone' => '+03:00',
'options' => extension_loaded('pdo_mysql') ? [