mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 21:52:35 +01:00
19 lines
298 B
PHP
Executable File
19 lines
298 B
PHP
Executable File
<?php
|
|
|
|
return array(
|
|
|
|
// The default gateway to use
|
|
'default' => 'paypal',
|
|
|
|
// Add in each gateway here
|
|
'gateways' => array(
|
|
'paypal' => array(
|
|
'driver' => 'Paypal_Express',
|
|
'options' => array(
|
|
'solutionType' => '',
|
|
'landingPage' => '',
|
|
'headerImageUrl' => ''
|
|
)
|
|
)
|
|
)
|
|
); |