flutterwave.php 749 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /*
  3. * This file is part of the Laravel Rave package.
  4. *
  5. * (c) Oluwole Adebiyi - Flamez <flamekeed@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: Your Rave publicKey. Sign up on https://dashboard.flutterwave.com/ to get one from your settings page
  13. *
  14. */
  15. 'publicKey' => env('FLW_PUBLIC_KEY'),
  16. /**
  17. * Secret Key: Your Rave secretKey. Sign up on https://dashboard.flutterwave.com/ to get one from your settings page
  18. *
  19. */
  20. 'secretKey' => env('FLW_SECRET_KEY'),
  21. /**
  22. * Prefix: Secret hash for webhook
  23. *
  24. */
  25. 'secretHash' => env('FLW_SECRET_HASH', ''),
  26. ];