paystack.php 710 B

1234567891011121314151617181920212223242526272829303132333435363738
  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' => env('PAYSTACK_PUBLIC_KEY'),
  16. /**
  17. * Secret Key From Paystack Dashboard
  18. *
  19. */
  20. 'secretKey' => env('PAYSTACK_SECRET_KEY'),
  21. /**
  22. * Paystack Payment URL
  23. *
  24. */
  25. 'paymentUrl' => "https://api.paystack.co",
  26. /**
  27. * Optional email address of the merchant
  28. *
  29. */
  30. 'merchantEmail' => env('MERCHANT_EMAIL'),
  31. ];