The official PHP library for OrvexPay. Seamlessly integrate crypto payments into Laravel, Symfony, WooCommerce, or any PHP project.
Designed to work perfectly with Laravel, Symfony, or any custom PHP framework using PSR-4 standards.
Powered by Guzzle 7 for reliable, synchronous or asynchronous HTTP requests with robust error handling.
composer require orvexpay/sdkPackagist use OrvexPay\Sdk\OrvexClient;
$client = new OrvexClient('your-api-key');
// Create an invoice
$invoice = $client->createInvoice([
'priceAmount' => '100.00',
'priceCurrency' => 'USD',
'payCurrency' => 'USDT',
'successUrl' => 'https://example.com/success',
'cancelUrl' => 'https://example.com/cancel'
]);
echo $invoice['id'];
The PHP SDK is fully open-source. Join our community and help us build the future of crypto payments.
View on GitHub