092a8bc7ce
- Removed all backup/duplicate files - Removed test files from root - Consolidated documentation to /docs/ - Moved scripts to /scripts/ - Renamed f_* directories (removed prefix) - Organized icons and assets - Removed unused vendor directories - Cleaned up redundant config files
20 lines
716 B
PHP
20 lines
716 B
PHP
<?php
|
|
// Square API Configuration
|
|
return [
|
|
'square' => [
|
|
'application_id' => 'YOUR_SQUARE_APP_ID',
|
|
'access_token' => 'YOUR_SQUARE_ACCESS_TOKEN',
|
|
'location_id' => 'YOUR_SQUARE_LOCATION_ID',
|
|
'environment' => 'sandbox', // Change to 'production' when going live
|
|
'currency' => 'USD',
|
|
'min_donation' => 1.00,
|
|
'max_donation' => 1000.00,
|
|
'default_amounts' => [5, 10, 25, 50, 100],
|
|
'webhook_secret' => 'YOUR_WEBHOOK_SECRET'
|
|
],
|
|
'streamer' => [
|
|
'min_balance' => 10.00, // Minimum balance before payout
|
|
'payout_fee' => 2.9, // Square payout fee percentage
|
|
'payout_fee_fixed' => 0.30 // Fixed fee per payout
|
|
]
|
|
];
|