Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

services.php 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. 'resend' => [
  18. 'key' => env('RESEND_KEY'),
  19. ],
  20. 'ses' => [
  21. 'key' => env('AWS_ACCESS_KEY_ID'),
  22. 'secret' => env('AWS_SECRET_ACCESS_KEY'),
  23. 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
  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. 'github' => [
  32. 'client_id' => env('GITHUB_CLIENT_ID'),
  33. 'client_secret' => env('GITHUB_CLIENT_SECRET'),
  34. 'redirect' => env('APP_URL') . '/company/oauth/github/callback',
  35. ],
  36. 'currency_api' => [
  37. 'key' => env('CURRENCY_API_KEY'),
  38. 'base_url' => 'https://v6.exchangerate-api.com/v6',
  39. ],
  40. 'plaid' => [
  41. 'client_id' => env('PLAID_CLIENT_ID'),
  42. 'client_secret' => env('PLAID_CLIENT_SECRET'),
  43. 'environment' => env('PLAID_ENVIRONMENT', 'sandbox'),
  44. ],
  45. ];