Files
wticreatorstudio/config/paddle.php
Fritz Ramirez 10d0c477c8 Initial commit
2024-02-12 22:54:20 -05:00

19 lines
347 B
PHP

<?php
return [
'vendor_id' => env('PADDLE_VENDOR_ID'),
'vendor_auth_code' => env('PADDLE_VENDOR_AUTH_CODE'),
'public_key' => env('PADDLE_PUBLIC_KEY'),
'webhook_uri' => 'paddle/webhook',
/**
* https://developer.paddle.com/getting-started/sandbox
*/
'sandbox_environment' => env('PADDLE_SANDBOX', false),
];