Created
September 20, 2019 01:17
-
-
Save thehelvetian/5c5d126c8108e795de9594769af7d53c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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' | |
), | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment