services.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. 'mailgun' => [
  15. 'domain' => env('MAILGUN_DOMAIN'),
  16. 'secret' => env('MAILGUN_SECRET'),
  17. 'endpoint' => env('MAILGUN_ENDPOINT', 'api.mailgun.net'),
  18. ],
  19. 'postmark' => [
  20. 'token' => env('POSTMARK_TOKEN'),
  21. ],
  22. 'ses' => [
  23. 'key' => env('AWS_ACCESS_KEY_ID'),
  24. 'secret' => env('AWS_SECRET_ACCESS_KEY'),
  25. 'region' => env('AWS_DEFAULT_REGION', 'us-east-1'),
  26. ],
  27. 'facebook' => [
  28. 'client_id' => env('FACEBOOK_CLIENT_ID'),
  29. 'client_secret' => env('FACEBOOK_CLIENT_SECRET'),
  30. 'redirect' => '',
  31. ],
  32. 'twitter' => [
  33. 'client_id' => env('TWITTER_CLIENT_ID'),
  34. 'client_secret' => env('TWITTER_CLIENT_SECRET'),
  35. 'redirect' => '',
  36. ],
  37. 'linkedin' => [
  38. 'client_id' => env('LINKEDIN_CLIENT_ID'),
  39. 'client_secret' => env('LINKEDIN_CLIENT_SECRET'),
  40. 'redirect' => '',
  41. ],
  42. 'google' => [
  43. 'client_id' => env('GOOGLE_CLIENT_ID'),
  44. 'client_secret' => env('GOOGLE_CLIENT_SECRET'),
  45. 'redirect' => '',
  46. ],
  47. 'github' => [
  48. 'client_id' => env('GITHUB_CLIENT_ID'),
  49. 'client_secret' => env('GITHUB_CLIENT_SECRET'),
  50. 'redirect' => '',
  51. ],
  52. 'gitlab' => [
  53. 'client_id' => env('GITLAB_CLIENT_ID'),
  54. 'client_secret' => env('GITLAB_CLIENT_SECRET'),
  55. 'redirect' => '',
  56. ],
  57. 'bitbucket' => [
  58. 'client_id' => env('BITBUCKET_CLIENT_ID'),
  59. 'client_secret' => env('BITBUCKET_CLIENT_SECRET'),
  60. 'redirect' => '',
  61. ],
  62. ];