cloudcogsio/omnipay-firstatlanticcommerce-gateway
Composer 安装命令:
composer require cloudcogsio/omnipay-firstatlanticcommerce-gateway
包简介
First Atlantic Commerce (FAC) Payment Gateway Driver for Omnipay
README 文档
README
First Atlantic Commerce gateway for the Omnipay PHP payment processing library
Omnipay is a framework agnostic, multi-gateway payment processing library for PHP 5.3+. This package implements First Atlantic Commerce (FAC) support for Omnipay.
Installation
Via Composer
$ composer require cloudcogsio/omnipay-firstatlanticcommerce-gateway
Gateway Operation Defaults
This gateway driver operates in 3DS mode by default and requires a callback URL to be provided via the 'setReturnUrl' method. The return URL must then implement the 'acceptNotification' method to capture the transaction response from FAC.
The gateway can process non-3DS transactions by explicitly turning off 3DS during gateway configuration.
$gateway->set3DS(false);
Usage
For general usage instructions, please see the main Omnipay repository.
Non-3DS Transactions (Direct Integration)
use Omnipay\Omnipay; try { $gateway = Omnipay::create('FirstAtlanticCommerce_FAC'); $gateway ->setTestMode(true) ->setIntegrationOption(\Omnipay\FirstAtlanticCommerce\Constants::GATEWAY_INTEGRATION_DIRECT) ->setFacId('xxxxxxxx') ->setFacPwd('xxxxxxxx') ->set3DS(false); $cardData = [ 'number' => '4111111111111111', 'expiryMonth' => '01', 'expiryYear' => '2025', 'cvv' => '123' ]; $transactionData = [ 'card' => $cardData, 'currency' => 'USD', 'amount' => '1.00', 'transactionId' => 'OrderNo-2100001' ]; $response = $gateway->purchase($transactionData)->send(); if($response->isSuccessful()) { // Verify response $response->verifySignature(); // Purchase was succussful, continue order processing ... } } catch (Exception $e){ $e->getMessage(); }
3DS Transactions (Direct Integration)
'returnUrl' required. URL must be https://
use Omnipay\Omnipay; try { $gateway = Omnipay::create('FirstAtlanticCommerce_FAC'); $gateway ->setTestMode(true) ->setIntegrationOption(\Omnipay\FirstAtlanticCommerce\Constants::GATEWAY_INTEGRATION_DIRECT) ->setFacId('xxxxxxxx') ->setFacPwd('xxxxxxxx') ->set3DS(true) // **Required and must be https:// ->setReturnUrl('https://localhost/accept-notification.php'); $cardData = [ 'number' => '4111111111111111', 'expiryMonth' => '01', 'expiryYear' => '2025', 'cvv' => '123' ]; $transactionData = [ 'card' => $cardData, 'currency' => 'USD', 'amount' => '1.00', 'transactionId' => 'OrderNo-2100001' ]; $response = $gateway->purchase($transactionData)->send(); if($response->isRedirect()) { // Redirect to continue 3DS verification $response->redirect(); } else { // 3DS transaction failed setup, show error reason. echo $response->getMessage(); } } catch (Exception $e){ $e->getMessage(); }
accept-notification.php Accept transaction response from FAC.
$gateway = Omnipay::create('FirstAtlanticCommerce_FAC'); $gateway // Password is required to perform response signature verification ->setFacPwd('xxxxxxxx'); // Signature verification is performed implicitly once the gateway was initialized with the password. $response = $gateway->acceptNotification($_POST)->send(); if($response->isSuccessful()) { // Purchase was succussful, continue order processing ... } else { // Transaction failed echo $response->getMessage(); }
Support
If you are having general issues with Omnipay, we suggest posting on Stack Overflow. Be sure to add the omnipay tag so it can be easily found.
If you believe you have found a bug, please report it using the GitHub issue tracker, or better yet, fork the library and submit a pull request.
cloudcogsio/omnipay-firstatlanticcommerce-gateway 适用场景与选型建议
cloudcogsio/omnipay-firstatlanticcommerce-gateway 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 106 次下载、GitHub Stars 达 4, 最近一次更新时间为 2021 年 07 月 13 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「api」 「omnipay」 「payment-gateway」 「cloudcogs」 「cloudcogs.io」 「first-atlantic-commerce」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 cloudcogsio/omnipay-firstatlanticcommerce-gateway 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 cloudcogsio/omnipay-firstatlanticcommerce-gateway 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 cloudcogsio/omnipay-firstatlanticcommerce-gateway 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Payyo Gateway for the Omnipay payment processing library
Yandex.Kassa driver for Omnipay payment processing library
Client SDK for CyberSource REST APIs
A PSR-7 compatible library for making CRUD API endpoints
Some pre-defined rules for validation in Omnipay payment processing library.
BluePay gateway for the Omnipay payment processing library
统计信息
- 总下载量: 106
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 4
- 点击次数: 8
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2021-07-13