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
29 lines
700 B
<?php
|
|
|
|
return [
|
|
|
|
// The default gateway to use
|
|
'default' => 'STRIPE',
|
|
|
|
// Add in each gateway here
|
|
'gateways' => [
|
|
'PAYPAL' => [
|
|
'driver' => 'PayPal_Express',
|
|
'options' => [
|
|
'solutionType' => '',
|
|
'landingPage' => '',
|
|
'headerImageUrl' => '',
|
|
'testMode' => env('OMNIPAY_TEST_MODE', true)
|
|
|
|
]
|
|
],
|
|
'STRIPE' => [
|
|
'driver' => 'Stripe',
|
|
'options' => [
|
|
'apiKey' => env('STRIPE_API_KEY', config('shop.stripe_api_key')),
|
|
'testMode' => env('OMNIPAY_TEST_MODE', true)
|
|
]
|
|
]
|
|
]
|
|
|
|
];
|