passimpay/passimpay-php-api
Composer 安装命令:
composer require passimpay/passimpay-php-api
包简介
Passimpay API PHP wrapper
关键字:
README 文档
README
This is a library for easy integration of Passimpay API to your PHP project.
Requirements
- PHP >= 7.1.0
- ext-mbstring
- ext-json
- ext-curl
You will also need to create your platform here and specify certain values in code:
- platform id
- secret key
Composer installation
$ composer require passimpay/passimpay-php-api
Examples
- Getting balance:
use Passimpay/PassimpayApi;
$api = new PassimpayApi(123, 'secret key');
list($balance, $error) = $api->balance();
if (null !== $error) {
throw new Exception($error);
}
dosomething($balance);
- Getting list of currencies:
use Passimpay/PassimpayApi;
$api = new PassimpayApi(123, 'secret key');
list($currencies, $error) = $api->currencies();
if (null !== $error) {
throw new Exception($error);
}
dosomething($currencies);
- Creating invoice link:
use Passimpay/PassimpayApi;
$api = new PassimpayApi(123, 'secret key');
list($url, $error) = $api->invoice('your invoice id', 999.0);
if (null !== $error) {
throw new Exception($error);
}
dosomething($url);
- Checking invoice status:
use Passimpay/PassimpayApi;
$api = new PassimpayApi(123, 'secret key');
list($status, $error) = $api->invoiceStatus('your invoice id');
if (null !== $error) {
throw new Exception($error);
}
dosomething($status);
- Getting wallet address for payments:
use Passimpay/PassimpayApi;
$api = new PassimpayApi(123, 'secret key');
list($address, $error) = $api->paymentWallet('order id', 'payment id');
if (null !== $error) {
throw new Exception($error);
}
dosomething($address);
- Withdraw:
use Passimpay/PassimpayApi;
$api = new PassimpayApi(123, 'secret key');
list($response, $error) = $api->withdraw('payment id', 'addressTo', 999.0);
if (null !== $error) {
throw new Exception($error);
}
dosomething($response);
- Checking transaction status:
use Passimpay/PassimpayApi;
$api = new PassimpayApi(123, 'secret key');
list($response, $error) = $api->transactionStatus('transaction hash');
if (null !== $error) {
throw new Exception($error);
}
dosomething($response);
- Handling notifications:
Upon creating platform at passimpay.io you could specify endpoint to call when invoice status is changed.
Use code below to handle this notification:
$secretKey = '123';
$hash = $_POST['hash'];
$data = [
'platform_id' => (int) $_POST['platform_id'], // Platform ID
'payment_id' => (int) $_POST['payment_id'], // currency ID
'order_id' => (int) $_POST['order_id'], // Payment ID of your platform
'amount' => $_POST['amount'], // transaction amount
'txhash' => $_POST['txhash'], // Hash or transaction ID. You can find the transaction ID in the PassimPay transaction history in your account.
'address_from' => $_POST['address_from'], // sender address
'address_to' => $_POST['address_to'], // recipient address
'fee' => $_POST['fee'], // network fee
];
if (isset($_POST['confirmations']))
{
$data['confirmations'] = $_POST['confirmations']; // number of network confirmations (Bitcoin, Litecoin, Dogecoin, Bitcoin Cash)
}
$payload = http_build_query($data);
if (!isset($hash) || hash_hmac('sha256', $payload, $secretKey) != $hash)
{
return false;
}
// payment credited
// your code...
Contribution
Feel free to create an issue in case you have found a bug or have a suggestion.
passimpay/passimpay-php-api 适用场景与选型建议
passimpay/passimpay-php-api 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 92 次下载、GitHub Stars 达 1, 最近一次更新时间为 2023 年 09 月 29 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「api」 「currency」 「paypal」 「crypto」 「merchant」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 passimpay/passimpay-php-api 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 passimpay/passimpay-php-api 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 passimpay/passimpay-php-api 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A PSR-7 compatible library for making CRUD API endpoints
Fixer.io data provider for Peso
TCMB Currenct Converter
Immutable PHP currency converter that's data-agnostic.
Alfabank REST API integration
A simple PHP Cryptography Implementation for the Ark Blockchain.
统计信息
- 总下载量: 92
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 28
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2023-09-29