My SMM panel
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.
 
 
 
 
 
 

64 lines
1.5 KiB

  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. 'stripe' => [
  28. 'key' => env('STRIPE_KEY'),
  29. 'secret' => env('STRIPE_SECRET'),
  30. ],
  31. 'payeer' => [
  32. 'secret' => env('PAYEER_SECRET'),
  33. 'param_key' => env('PAYEER_PARAM_KEY'),
  34. 'id' => env('PAYEER_ID'),
  35. ],
  36. 'pm' => [
  37. 'account' => env('PM_ACCOUNT'),
  38. 'secret' => env('PM_SECRET'),
  39. ],
  40. 'smmkings' => [
  41. 'key' => env('SMM_KEY'),
  42. 'link' => env('SMM_LINK'),
  43. ],
  44. 'getfans' => [
  45. 'key' => env('GETFANS_KEY'),
  46. 'link' => env('GETFANS_LINK'),
  47. ],
  48. 'smmworld' => [
  49. 'key' => env('SMMWORLD_KEY'),
  50. 'link' => env('SMMWORLD_LINK'),
  51. ]
  52. ];