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.

38 lines
724 B

1 month ago
  1. <?php
  2. /*
  3. * This file is part of the Laravel Paystack package.
  4. *
  5. * (c) Prosper Otemuyiwa <prosperotemuyiwa@gmail.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. return [
  11. /**
  12. * Public Key From Paystack Dashboard
  13. *
  14. */
  15. 'publicKey' => getenv('PAYSTACK_PUBLIC_KEY'),
  16. /**
  17. * Secret Key From Paystack Dashboard
  18. *
  19. */
  20. 'secretKey' => getenv('PAYSTACK_SECRET_KEY'),
  21. /**
  22. * Paystack Payment URL
  23. *
  24. */
  25. 'paymentUrl' => getenv('PAYSTACK_PAYMENT_URL'),
  26. /**
  27. * Optional email address of the merchant
  28. *
  29. */
  30. 'merchantEmail' => getenv('MERCHANT_EMAIL'),
  31. ];