services.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <?php
  2. return [
  3. 'telegram' => [
  4. 'token' => env('TELEGRAM_BOT_TOKEN'),
  5. 'username' => env('TELEGRAM_BOT_USERNAME'),
  6. ],
  7. /*
  8. |--------------------------------------------------------------------------
  9. | Third Party Services
  10. |--------------------------------------------------------------------------
  11. |
  12. | This file is for storing the credentials for third party services such
  13. | as Mailgun, Postmark, AWS and more. This file provides the de facto
  14. | location for this type of information, allowing packages to have
  15. | a conventional file to locate the various service credentials.
  16. |
  17. */
  18. 'mailgun' => [
  19. 'domain' => env('MAILGUN_DOMAIN'),
  20. 'secret' => env('MAILGUN_SECRET'),
  21. 'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),
  22. 'scheme' => 'https',
  23. ],
  24. 'postmark' => [
  25. 'token' => env('POSTMARK_TOKEN'),
  26. ],
  27. 'ses' => [
  28. 'key' => env('AWS_ACCESS_KEY_ID'),
  29. 'secret' => env('AWS_SECRET_ACCESS_KEY'),
  30. 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
  31. ],
  32. 'google' => [
  33. 'client_id' => env('GOOGLE_CLIENT_ID'),
  34. 'client_secret' => env('GOOGLE_CLIENT_SECRET'),
  35. 'redirect_uri' => env('GOOGLE_REDIRECT_URI'),
  36. ],
  37. 'push' => [
  38. 'app_key' => env('J_PUSH_APP_KEY', ''),
  39. 'app_secret' => env('J_PUSH_APP_SECRET', ''),
  40. ],
  41. 'apple' => [
  42. 'shared_secret' => env('APPLE_SHARED_SECRET', ''),
  43. 'verify_receipt_uri' => env('APPLE_VERIFY_RECEIPT_URI', ''),
  44. ]
  45. ];