flydev-fr/vivawallet-php
Composer 安装命令:
composer require flydev-fr/vivawallet-php
包简介
Viva Wallet Native Checkout V2 API PHP Wrapper Library
README 文档
README
This is a wrapper for Native Checkout V2 API of Viva Wallet: https://developer.vivawallet.com/online-checkouts/native-checkout-v2/
How to use
This library is installed via Composer. You will need to require flydev-fr/viva-php:
composer require flydev-fr/viva-php:~1.0
Prerequisites
Complete prerequisite steps from https://developer.vivawallet.com/online-checkouts/native-checkout-v2/ and obtain your Client ID and Client Secret.
You'll need to set up a payment source with Native Checkout V2 as the integration method and get a Source Code.
Get card charge token
Create payment form and Charge Token at front end as described here: https://developer.vivawallet.com/online-checkouts/native-checkout-v2/
You'll need to have Access Token and Base URL at front end and you can get them as follows:
$baseUrl = \FlydevFr\Viva\Transaction\Url::getUrl("[Test Mode]"); // Test mode, default is false $accessToken = (new \FlydevFr\Viva\Account\Authorization()) ->setClientId("[Client ID]") // Client ID, Provided by wallet ->setClientSecret("[Client Secret]") // Client Secret, Provided by wallet ->setTestMode("[Test Mode]") // Test mode, default is false, can be skipped ->getAccessToken();
Now, when you have Charge Token you can make actual transactions.
Transactions
CHARGE
$customer = (new \FlydevFr\Viva\Transaction\Customer()) ->setEmail("[Customer Email]") ->setPhone("[Customer Phone]") ->setFullName("[Customer Full Name]"); $transaction = (new FlydevFr\Viva\Transaction\Charge()) ->setClientId("[Client ID]") // Client ID, Provided by wallet ->setClientSecret("[Client Secret]") // Client Secret, Provided by wallet ->setTestMode("[Test Mode]") // Test mode, default is false, can be skipped ->setSourceCode("[Source Code]") // Source code, provided by wallet ->setAmount((int) "[Amount]") // The amount to charge in currency's smallest denomination (e.g amount in pounds x 100) ->setInstallments((int) "[Installments]") // Installments, can be skipped if not used ->setChargeToken("[Charge Token]") // Charge token obtained at front end ->setCustomer($customer); $result = $transaction->send(); if (!empty($transaction->getError())) { // Log the error message // $error = $transaction->getError(); } else { // Save transaction id // $transactionId = $result->transactionId; }
AUTHORIZATION
$customer = (new \FlydevFr\Viva\Transaction\Customer()) ->setEmail("[Customer Email]") ->setPhone("[Customer Phone]") ->setFullName("[Customer Full Name]"); $transaction = (new FlydevFr\Viva\Transaction\Authorization()) ->setClientId("[Client ID]") // Client ID, Provided by wallet ->setClientSecret("[Client Secret]") // Client Secret, Provided by wallet ->setTestMode("[Test Mode]") // Test mode, default is false, can be skipped ->setSourceCode("[Source Code]") // Source code, provided by wallet ->setAmount((int) "[Amount]") // The amount to pre-auth in currency's smallest denomination (e.g amount in pounds x 100) ->setInstallments((int) "[Installments]") // Installments, can be skipped if not used ->setChargeToken("[Charge Token]") // Charge token obtained at front end ->setCustomer($customer); $result = $transaction->send(); if (!empty($transaction->getError())) { // Log the error message // $error = $transaction->getError(); } else { // Save transaction id // $transactionId = $result->transactionId; }
CAPTURE
Make sure you have recurring payments enabled in your account.
$transaction = (new \FlydevFr\Viva\Transaction\Capture()) ->setClientId("[Client ID]") // Client ID, Provided by wallet ->setClientSecret("[Client Secret]") // Client Secret, Provided by wallet ->setTestMode("[Test Mode]") // Test mode, default is false, can be skipped ->setTransactionId("[Transaction ID]") // Transaction id of authorization transaction ->setAmount((int) "[Amount]"); // The amount to capture in currency's smallest denomination (e.g amount in pounds x 100) $result = $transaction->send(); if (!empty($transaction->getError())) { // Log the error message // $error = $transaction->getError(); } else { // Save transaction id // $transactionId = $result->transactionId; }
CANCEL
Make sure you have refunds enabled in your account.
$transaction = (new \FlydevFr\Viva\Transaction\Cancel()) ->setClientId("[Client ID]") // Client ID, Provided by wallet ->setClientSecret("[Client Secret]") // Client Secret, Provided by wallet ->setTestMode("[Test Mode]") // Test mode, default is false, can be skipped ->setSourceCode("[Source Code]") // Source code, provided by wallet ->setTransactionId("[Transaction ID]") // Transaction id of charge, authorization or capture transaction ->setAmount((int) "[Amount]"); // The amount to refund in currency's smallest denomination (e.g amount in pounds x 100) $result = $transaction->send(); if (!empty($transaction->getError())) { // Log the error message // $error = $transaction->getError(); } else { // Save transaction id // $transactionId = $result->transactionId; }
Get charge token at backend
It's possible to get charge token at backend. It may be required in custom integration, more details can be found here: https://developer.vivawallet.com/online-checkouts/native-checkout-v2/
$transaction = (new \FlydevFr\Viva\Transaction\ChargeToken()) ->setClientId("[Client ID]") // Client ID, Provided by wallet ->setClientSecret("[Client Secret]") // Client Secret, Provided by wallet ->setTestMode("[Test Mode]") // Test mode, default is false, can be skipped ->setAmount((int) "[Amount]"); // The amount in currency's smallest denomination (e.g amount in pounds x 100) ->setCvc("[Cvc code]") // Card cvc code ->setNumber("[Card number]") // Card number ->setHolderName("[Holder name]") // Card holder name ->setExpirationYear((int) "[Expiration Year]") // Card expiration year ->setExpirationMonth((int) "[Expiration Month]") // Card expiration month ->setSessionRedirectUrl("[Session redirect url]"); // Url to redirect when authentication session finished $result = $transaction->send(); if (!empty($transaction->getError())) { // Log the error message // $error = $transaction->getError(); } else { // Get charge token // $chargeToken = $result->chargeToken; // $redirectToACSForm = $result->redirectToACSForm; }
Check for installments
Retrieve the maximum number of installments allowed on a card.
$transaction = (new \FlydevFr\Viva\Transaction\Installments()) ->setClientId("[Client ID]") // Client ID, Provided by wallet ->setClientSecret("[Client Secret]") // Client Secret, Provided by wallet ->setTestMode("[Test Mode]") // Test mode, default is false, can be skipped ->setNumber("[Card number]"); // Card number $result = $transaction->send(); if (!empty($transaction->getError())) { // Log the error message // $error = $transaction->getError(); } else { // Get number of installments // $installments = $result->maxInstallments; }
flydev-fr/vivawallet-php 适用场景与选型建议
flydev-fr/vivawallet-php 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 14 次下载、GitHub Stars 达 0, 最近一次更新时间为 2021 年 01 月 04 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「api」 「payment」 「checkout」 「wallet」 「v2」 「native」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 flydev-fr/vivawallet-php 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 flydev-fr/vivawallet-php 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 flydev-fr/vivawallet-php 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A PSR-7 compatible library for making CRUD API endpoints
Adds a 'checkout' to a SilverStripe site which links to an Estimate and adds the ability to setup and pay
Rich payment solutions for Laravel framework. Paypal, payex, authorize.net, be2bill, omnipay, recurring paymens, instant notifications and many more
Add a simple webshop to your Laravel project
Customer notes for Contao Isotope eCommerce checkout.
Cliente em PHP para integração server-side com APIs Moip v2
统计信息
- 总下载量: 14
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-01-04