mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-01-16 19:05:08 -05:00
19 lines
347 B
PHP
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),
|
|
|
|
];
|