Telegram Userbot + LG Pay (PHP, cPanel-ready)
=============================================

Files:
  - composer.json
  - config.php (edit placeholders)
  - userbot_lgpay.php
  - runner.php (for cron keepalive)
  - notify.php (public webhook; set NOTIFY_URL to this with a secret)

Install on cPanel:
  1) Upload all files into /home/USERNAME/public_html/userbot/
  2) cPanel Terminal (or Composer feature):
     cd ~/public_html/userbot
     composer install
  3) First login (one-time):
     php userbot_lgpay.php
     (enter phone, OTP, 2FA if any) -> creates userbot.session
  4) Add Cron:
     * * * * * /usr/local/bin/php -d max_execution_time=0 /home/USERNAME/public_html/userbot/runner.php > /dev/null 2>&1
  5) In LG Pay dashboard set notify URL to:
     https://YOURDOMAIN/USERBOT_PATH/notify.php?secret=XYZ123

Use:
  - From your personal Telegram account, type in any chat:
    /pay 500 VIP
  - Also available:
    /check ORD123...
    /balance

Notes:
  - This ZIP does not include the vendor/ folder. You must run 'composer install' to generate vendor/autoload.php.
  - Do NOT include userbot_lgpay.php from web endpoints (like notify.php), to avoid 'Cannot redeclare...' errors.
  - Keep SESSION and keys private.
