1. Go to this page and download the library: Download univapay/php-sdk library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
univapay / php-sdk example snippets
use Univapay\UnivapayClient;
use Univapay\UnivapayClientOptions;
use Univapay\Requests\Handlers\RateLimitHandler;
$client = new UnivapayClient(AppJWT::createToken('token', 'secret'));
// その他のオプションは、クライアントをインスタンス化する前にクライアントオプションオブジェクトを作成および変更します
// すべてのオプションについては、UnivapayClientOptionsを参照してください
$clientOptions = new UnivapayClientOptions();
$clientOptions->rateLimitHandler = new RateLimitHandler(5, 2);
$client = new UnivapayClient(AppJWT::createToken('token', 'secret'), $clientOptions);
// 使用例については、examplesフォルダを参照してください
use Money\Currency;
use Money\Money;
use Univapay\PaymentMethod\CardPayment;
$paymentMethod = new CardPayment(...);
$charge = $client
->createToken($paymentMethod)
->createCharge(Money::USD(1000));
$charge->currency === new Currency('USD'); // true
$charge->requestAmount === new Money(1000, $charge->currency); // true