25 lines
477 B
PHP
25 lines
477 B
PHP
<?php
|
|
|
|
return [
|
|
|
|
// The default gateway to use
|
|
'default' => 'stripe',
|
|
|
|
// Add in each gateway here
|
|
'gateways' => [
|
|
'paypal' => [
|
|
'driver' => 'PayPal_Express',
|
|
'options' => [
|
|
'solutionType' => '',
|
|
'landingPage' => '',
|
|
'headerImageUrl' => '',
|
|
],
|
|
],
|
|
'stripe' => [
|
|
'driver' => 'Stripe',
|
|
'options' => [],
|
|
],
|
|
],
|
|
|
|
];
|