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.

services.php 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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. 'slack' => [
  23. 'notifications' => [
  24. 'bot_user_oauth_token' => env('SLACK_BOT_USER_OAUTH_TOKEN'),
  25. 'channel' => env('SLACK_BOT_USER_DEFAULT_CHANNEL'),
  26. ],
  27. ],
  28. 'github' => [
  29. 'client_id' => env('GITHUB_CLIENT_ID'),
  30. 'client_secret' => env('GITHUB_CLIENT_SECRET'),
  31. 'redirect' => env('APP_URL') . '/company/oauth/github/callback',
  32. ],
  33. 'currency_api' => [
  34. 'key' => env('CURRENCY_API_KEY'),
  35. 'base_url' => 'https://v6.exchangerate-api.com/v6',
  36. ],
  37. 'plaid' => [
  38. 'client_id' => env('PLAID_CLIENT_ID'),
  39. 'client_secret' => env('PLAID_CLIENT_SECRET'),
  40. 'environment' => env('PLAID_ENVIRONMENT', 'sandbox'),
  41. ],
  42. ];