Back to Developers
PHP SDK

Composer-Ready
PHP SDK

The official PHP library for OrvexPay. Seamlessly integrate crypto payments into Laravel, Symfony, WooCommerce, or any PHP project.

Why Use the PHP SDK?

Framework Agnostic

Designed to work perfectly with Laravel, Symfony, or any custom PHP framework using PSR-4 standards.

Modern Guzzle Client

Powered by Guzzle 7 for reliable, synchronous or asynchronous HTTP requests with robust error handling.

Quick Integration

Terminal
composer require orvexpay/sdk
Packagist
PHP Usage Example
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'];

Open Source

The PHP SDK is fully open-source. Join our community and help us build the future of crypto payments.

View on GitHub

Requirements

PHP Version7.4, 8.0+
Guzzle^7.0