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.

29 lines
700 B

1 month ago
  1. <?php
  2. return [
  3. // The default gateway to use
  4. 'default' => 'STRIPE',
  5. // Add in each gateway here
  6. 'gateways' => [
  7. 'PAYPAL' => [
  8. 'driver' => 'PayPal_Express',
  9. 'options' => [
  10. 'solutionType' => '',
  11. 'landingPage' => '',
  12. 'headerImageUrl' => '',
  13. 'testMode' => env('OMNIPAY_TEST_MODE', true)
  14. ]
  15. ],
  16. 'STRIPE' => [
  17. 'driver' => 'Stripe',
  18. 'options' => [
  19. 'apiKey' => env('STRIPE_API_KEY', config('shop.stripe_api_key')),
  20. 'testMode' => env('OMNIPAY_TEST_MODE', true)
  21. ]
  22. ]
  23. ]
  24. ];