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.

31 lines
749 B

1 month ago
  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. ];