services.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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 Stripe, Mailgun, SparkPost and others. This file provides a sane
  10. | default location for this type of information, allowing packages
  11. | to have a conventional place to find your various credentials.
  12. |
  13. */
  14. 'mailgun' => [
  15. 'domain' => env('MAILGUN_DOMAIN'),
  16. 'secret' => env('MAILGUN_SECRET'),
  17. ],
  18. 'ses' => [
  19. 'key' => env('SES_KEY'),
  20. 'secret' => env('SES_SECRET'),
  21. 'region' => 'us-east-1',
  22. ],
  23. 'sparkpost' => [
  24. 'secret' => env('SPARKPOST_SECRET'),
  25. ],
  26. 'stripe' => [
  27. 'model' => App\Models\User\UserModel::class,
  28. 'key' => env('STRIPE_KEY'),
  29. 'secret' => env('STRIPE_SECRET'),
  30. ],
  31. 'chuanglansms' => [
  32. 'default' => [
  33. 'account' => 'N4703353',
  34. 'password' => 'mtq9wh4rWG660b',
  35. 'send_url' => 'https://smssh1.253.com/msg/send/json',
  36. ],
  37. 'yingxiao' => [
  38. 'account' => 'BK8412222',
  39. 'password' => 'fk4mauzhZ',
  40. 'send_url' => 'http://m.253.com/msg/send/json',
  41. ],
  42. ],
  43. 'alisms' => [
  44. 'access_key_id' => 'LTAIshA7G6CyHlyh',
  45. 'access_key_secret' => 'QFlGrFcGfpx0EPnfzxJmmz3nzzsPFW',
  46. ],
  47. 'xunfei' => [
  48. 'app_id' => '5d8ec2d1',
  49. 'secret_key' => '8fe36170b1133969298700c4a587188a',
  50. ],
  51. 'lbs' => [
  52. 'key' => env('LBS_KEY'),
  53. ],
  54. ];