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.
13 lines
358 B
13 lines
358 B
<?php
|
|
|
|
return [
|
|
'client_id' => env('PAYPAL_CLIENT_ID',''),
|
|
'secret' => env('PAYPAL_SECRET',''),
|
|
'settings' => array(
|
|
'mode' => env('PAYPAL_MODE','sandbox'),
|
|
'http.ConnectionTimeOut' => 30,
|
|
'log.LogEnabled' => true,
|
|
'log.FileName' => storage_path() . '/logs/paypal.log',
|
|
'log.LogLevel' => 'ERROR'
|
|
),
|
|
];
|
|
|