Files
Krystie 092a8bc7ce refactor: organize codebase and remove redundant files
- 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
2026-03-30 16:34:45 -07:00

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
]
];