Files
Atomcms-edit/config/paypal.php
T
2026-05-09 17:32:17 +02:00

49 lines
1.5 KiB
PHP
Executable File

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