OwlCyberSecurity - MANAGER
Edit File: paypal.php
<?php return array( // set your paypal credential // Below credentials are different for sandbox mode and live mode. 'client_id' => env('PAYPAL_CLIENT_ID',''), 'secret' => env('PAYPAL_SECRET',''), /** * SDK configuration */ 'settings' => array( /** * Available option 'sandbox' or 'live' * Remember sandbox id and secret will be different than live */ 'mode' => env('PAYPAL_MODE','sandbox'), /** * Specify the max request time in seconds */ 'http.ConnectionTimeOut' => 60, /** * Whether want to log to a file */ 'log.LogEnabled' => true, /** * Specify the file that want to write on */ 'log.FileName' => storage_path() . '/logs/paypal.log', /** * Available option 'FINE', 'INFO', 'WARN' or 'ERROR' * * Logging is most verbose in the 'FINE' level and decreases as you * proceed towards ERROR */ 'log.LogLevel' => 'FINE' ), );