1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-25 02:37:10 +02:00
invoiceninja/config/packages/ignited/laravel-omnipay/config.php
Jeramy Simpson 651e06fdb9 Update Confide Config Setting for L5
Also adds other package config settings however they have not yet been called in ConfigServiceProvider
2015-03-24 17:27:43 +10:00

19 lines
298 B
PHP

<?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' => ''
)
)
)
);