rave.php 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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://rave.flutterwave.com/ to get one from your settings page
  13. *
  14. */
  15. 'publicKey' => env('RAVE_PUBLIC_KEY'),
  16. /**
  17. * Secret Key: Your Rave secretKey. Sign up on https://rave.flutterwave.com/ to get one from your settings page
  18. *
  19. */
  20. 'secretKey' => env('RAVE_SECRET_KEY'),
  21. /**
  22. * Company/Business/Store Name: The name of your store
  23. *
  24. */
  25. 'title' => env('RAVE_TITLE', 'Rave Payment Gateway'),
  26. /**
  27. * Environment: This can either be 'staging' or 'live'
  28. *
  29. */
  30. 'env' => env('RAVE_ENVIRONMENT', 'staging'),
  31. /**
  32. * Logo: Enter the URL of your company/business logo
  33. *
  34. */
  35. 'logo' => env('RAVE_LOGO', ''),
  36. /**
  37. * Prefix: This is added to the front of your transaction reference numbers
  38. *
  39. */
  40. 'prefix' => env('RAVE_PREFIX', 'rave'),
  41. /**
  42. * Prefix: This is added to the front of your transaction reference numbers
  43. *
  44. */
  45. 'secretHash' => env('RAVE_SECRET_HASH', ''),
  46. ];