領収証発行サービス
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
668B

  1. <?php
  2. use App\Codes\SMSProviderName;
  3. use App\Models\SMSProvider;
  4. return [
  5. // 送信に使用するプロバイダ
  6. 'sms_provider' => SMSProviderName::from(env('SMS_PROVIDER', SMSProviderName::LOG->value)),
  7. 'sms' => [
  8. SMSProviderName::FOUR_S_MESSAGE->value => [
  9. 'userId' => env("SMS_FOURS_MESSAGE_USER"),
  10. 'password' => env("SMS_FOURS_MESSAGE_PASSWORD"),
  11. ],
  12. SMSProviderName::LOG->value => [
  13. 'userId' => env("SMS_FOURS_MESSAGE_USER"),
  14. 'password' => env("SMS_FOURS_MESSAGE_PASSWORD"),
  15. ]
  16. ],
  17. 'custom' => [
  18. 'hellotechno' => [
  19. 'host' => env('CUSTOM_HELLOTECHNO_API_HOST', 'http://localhost')
  20. ],
  21. ],
  22. ];