You've already forked Atomcms-edit
Initial commit
This commit is contained in:
Executable
+48
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
return [
|
||||
'sandbox' => [
|
||||
'client_id' => 'test_client_id',
|
||||
'client_secret' => 'test_client_secret',
|
||||
'app_id' => 'APP-80W284485P519543T',
|
||||
'settings' => [
|
||||
'mode' => 'sandbox',
|
||||
'http.ConnectionTimeOut' => 30,
|
||||
'log.LogEnabled' => false,
|
||||
'log.FileName' => storage_path('logs/paypal.log'),
|
||||
'log.LogLevel' => 'ERROR',
|
||||
'validation.level' => 'log',
|
||||
'cache.enabled' => true,
|
||||
'cache.FileName' => storage_path('framework/cache/paypal.auth.cache'),
|
||||
],
|
||||
],
|
||||
|
||||
'live' => [
|
||||
'client_id' => 'test_client_id',
|
||||
'client_secret' => 'test_client_secret',
|
||||
'app_id' => 'AYo1u2z7N3rQ2i2b3c4d5e6f7g8h9i0j',
|
||||
'settings' => [
|
||||
'mode' => 'live',
|
||||
'http.ConnectionTimeOut' => 30,
|
||||
'log.LogEnabled' => false,
|
||||
'log.FileName' => storage_path('logs/paypal.log'),
|
||||
'log.LogLevel' => 'ERROR',
|
||||
'validation.level' => 'log',
|
||||
'cache.enabled' => true,
|
||||
'cache.FileName' => storage_path('framework/cache/paypal.auth.cache'),
|
||||
],
|
||||
],
|
||||
|
||||
'settings' => [
|
||||
'mode' => 'sandbox',
|
||||
'http.ConnectionTimeOut' => 30,
|
||||
'log.LogEnabled' => false,
|
||||
'log.FileName' => storage_path('logs/paypal.log'),
|
||||
'log.LogLevel' => 'ERROR',
|
||||
'validation.level' => 'log',
|
||||
'cache.enabled' => true,
|
||||
'cache.FileName' => storage_path('framework/cache/paypal.auth.cache'),
|
||||
],
|
||||
];
|
||||
Reference in New Issue
Block a user