services.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?php
  2. return [
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Third Party Services
  6. |--------------------------------------------------------------------------
  7. |
  8. | This file is for storing the credentials for third party services such
  9. | as Mailgun, Postmark, AWS and more. This file provides the de facto
  10. | location for this type of information, allowing packages to have
  11. | a conventional file to locate the various service credentials.
  12. |
  13. */
  14. 'postmark' => [
  15. 'token' => env('POSTMARK_TOKEN'),
  16. ],
  17. 'ses' => [
  18. 'key' => env('AWS_ACCESS_KEY_ID'),
  19. 'secret' => env('AWS_SECRET_ACCESS_KEY'),
  20. 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
  21. ],
  22. 'resend' => [
  23. 'key' => env('RESEND_KEY'),
  24. ],
  25. 'slack' => [
  26. 'notifications' => [
  27. 'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'),
  28. 'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'),
  29. ],
  30. ],
  31. 'pagarme' => [
  32. 'secret_key' => env('PAGARME_SECRET_KEY'),
  33. 'service_referer_name' => env('PAGARME_SERVICE_REFERER_NAME', env('APP_NAME', 'Laravel')),
  34. 'base_url' => env('PAGARME_BASE_URL', 'https://api.pagar.me/core/v5'),
  35. 'webhook_user' => env('PAGARME_WEBHOOK_USER'),
  36. 'webhook_password' => env('PAGARME_WEBHOOK_PASSWORD'),
  37. 'platform_recipient_id' => env('PAGARME_PLATFORM_RECIPIENT_ID'),
  38. 'pix_disable_split' => env('PAGARME_PIX_DISABLE_SPLIT', false),
  39. ],
  40. ];