├── Gateways ├── LitePay │ ├── index.php │ ├── litepay.php │ └── routes.php ├── Mollie │ ├── README.md │ ├── index.php │ └── routes.php ├── PayPal │ ├── index.php │ └── routes.php ├── PayPal_IPN │ ├── README.md │ ├── index.php │ └── routes.php ├── PayU │ ├── README.md │ ├── index.php │ └── routes.php ├── Stripe │ ├── index.php │ └── routes.php ├── StripeSofort │ ├── index.php │ ├── readme.md │ └── routes.php └── Xendit │ ├── index.php │ └── routes.php ├── LICENSE ├── README.md └── Servers ├── CyberPanel └── index.php ├── DirectAdmin ├── httpsocket.php └── index.php ├── ISPConfig ├── ISPConfigWS.php └── index.php ├── Plesk └── index.php ├── Proxmox ├── index.php ├── routes.php └── views │ ├── control.blade.php │ ├── settings.blade.php │ ├── stats.blade.php │ └── vnc.blade.php ├── Pterodactyl └── index.php ├── VirtFusion ├── index.php └── views │ └── control.blade.php └── Virtualizor ├── index.php └── sdk.php /Gateways/LitePay/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Gateways/LitePay/index.php -------------------------------------------------------------------------------- /Gateways/LitePay/litepay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Gateways/LitePay/litepay.php -------------------------------------------------------------------------------- /Gateways/LitePay/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Gateways/LitePay/routes.php -------------------------------------------------------------------------------- /Gateways/Mollie/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Gateways/Mollie/README.md -------------------------------------------------------------------------------- /Gateways/Mollie/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Gateways/Mollie/index.php -------------------------------------------------------------------------------- /Gateways/Mollie/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Gateways/Mollie/routes.php -------------------------------------------------------------------------------- /Gateways/PayPal/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Gateways/PayPal/index.php -------------------------------------------------------------------------------- /Gateways/PayPal/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Gateways/PayPal/routes.php -------------------------------------------------------------------------------- /Gateways/PayPal_IPN/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Gateways/PayPal_IPN/README.md -------------------------------------------------------------------------------- /Gateways/PayPal_IPN/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Gateways/PayPal_IPN/index.php -------------------------------------------------------------------------------- /Gateways/PayPal_IPN/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Gateways/PayPal_IPN/routes.php -------------------------------------------------------------------------------- /Gateways/PayU/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Gateways/PayU/README.md -------------------------------------------------------------------------------- /Gateways/PayU/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Gateways/PayU/index.php -------------------------------------------------------------------------------- /Gateways/PayU/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Gateways/PayU/routes.php -------------------------------------------------------------------------------- /Gateways/Stripe/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Gateways/Stripe/index.php -------------------------------------------------------------------------------- /Gateways/Stripe/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Gateways/Stripe/routes.php -------------------------------------------------------------------------------- /Gateways/StripeSofort/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Gateways/StripeSofort/index.php -------------------------------------------------------------------------------- /Gateways/StripeSofort/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Gateways/StripeSofort/readme.md -------------------------------------------------------------------------------- /Gateways/StripeSofort/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Gateways/StripeSofort/routes.php -------------------------------------------------------------------------------- /Gateways/Xendit/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Gateways/Xendit/index.php -------------------------------------------------------------------------------- /Gateways/Xendit/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Gateways/Xendit/routes.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/README.md -------------------------------------------------------------------------------- /Servers/CyberPanel/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Servers/CyberPanel/index.php -------------------------------------------------------------------------------- /Servers/DirectAdmin/httpsocket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Servers/DirectAdmin/httpsocket.php -------------------------------------------------------------------------------- /Servers/DirectAdmin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Servers/DirectAdmin/index.php -------------------------------------------------------------------------------- /Servers/ISPConfig/ISPConfigWS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Servers/ISPConfig/ISPConfigWS.php -------------------------------------------------------------------------------- /Servers/ISPConfig/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Servers/ISPConfig/index.php -------------------------------------------------------------------------------- /Servers/Plesk/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Servers/Plesk/index.php -------------------------------------------------------------------------------- /Servers/Proxmox/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Servers/Proxmox/index.php -------------------------------------------------------------------------------- /Servers/Proxmox/routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Servers/Proxmox/routes.php -------------------------------------------------------------------------------- /Servers/Proxmox/views/control.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Servers/Proxmox/views/control.blade.php -------------------------------------------------------------------------------- /Servers/Proxmox/views/settings.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Servers/Proxmox/views/settings.blade.php -------------------------------------------------------------------------------- /Servers/Proxmox/views/stats.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Servers/Proxmox/views/stats.blade.php -------------------------------------------------------------------------------- /Servers/Proxmox/views/vnc.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Servers/Proxmox/views/vnc.blade.php -------------------------------------------------------------------------------- /Servers/Pterodactyl/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Servers/Pterodactyl/index.php -------------------------------------------------------------------------------- /Servers/VirtFusion/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Servers/VirtFusion/index.php -------------------------------------------------------------------------------- /Servers/VirtFusion/views/control.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Servers/VirtFusion/views/control.blade.php -------------------------------------------------------------------------------- /Servers/Virtualizor/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Servers/Virtualizor/index.php -------------------------------------------------------------------------------- /Servers/Virtualizor/sdk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Paymenter/Extensions/HEAD/Servers/Virtualizor/sdk.php --------------------------------------------------------------------------------