領収証発行サービス
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

30 lignes
640B

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