Files
website/website/config/serverhunter.php
Claude Dev de8ec69ea0 feat: add advanced features — KB, tickets v2, multi-currency, cart, quotes, affiliates, credits, staff RBAC, fraud detection, service panels
Major additions:
- Knowledge base with categories, articles, revisions, and voting
- Enhanced ticket system: departments, SLA policies, canned responses, tags, custom fields, satisfaction ratings, internal notes
- Multi-currency support with exchange rate sync
- Shopping cart and quote system with PDF generation
- Affiliate program with referrals, commissions, and payouts
- Account credits, credit notes, and debit notes
- Staff management with granular role-based permissions
- Fraud detection and order risk assessment
- ServerHunter SEO integration
- Service lifecycle events (suspend/unsuspend/terminate)
- Service management panels for VPS, Dedicated, Hosting, and Game servers
- Plan lifecycle fields and per-customer overrides
- 30+ migrations, 17 factories, 8 feature test suites

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-17 07:35:10 -04:00

42 lines
1.3 KiB
PHP

<?php
declare(strict_types=1);
return [
'api_key' => env('SERVERHUNTER_API_KEY'),
'api_url' => 'https://api.serverhunter.com',
'location' => 'Atlanta, Georgia, United States of America',
'country_code' => 'US',
'coordinates' => '33.7490,-84.3880',
'currency' => 'USD',
'payment_methods' => ['creditcard', 'paypal'],
'spider_ips_url' => 'https://www.serverhunter.com/spider/ips/',
'spider_ips_cache_ttl' => 86400, // 24 hours
'vps' => [
'virtualization' => 'kvm',
'features' => ['ddos', 'ipv6', 'instant_setup', 'api'],
'operating_systems' => ['ubuntu', 'debian', 'centos', 'fedora', 'windows', 'custom'],
'unmetered' => ['inbound', 'outbound'],
'setup_fee' => '0.00',
],
'dedicated' => [
'virtualization' => 'none',
'features' => ['ddos', 'ipv6', 'api', 'hwraid', 'kvm'],
'operating_systems' => ['ubuntu', 'debian', 'centos', 'fedora', 'windows', 'custom', 'proxmox', 'vmware'],
'unmetered' => ['outbound'],
'setup_fee' => '0.00',
],
'defaults' => [
'cpu_type' => 'intel',
'cpu_name' => 'Xeon',
'cpu_speed' => '2.40',
'memory_type' => 'ddr4',
'memory_ecc' => 'ecc',
'disk_type' => 'ssd',
'uplink_mbps' => 1000,
],
];