承接 hotworks/easypay 相关项目开发

从需求分析到上线部署,全程专人跟进,保证项目质量与交付效率

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

hotworks/easypay

Composer 安装命令:

composer require hotworks/easypay

包简介

Abstraction layer for Easypay's service

README 文档

README

Credits

A lot of this code was actually taken from Easypay's documentation. I just turned it into a class, providing an abstraction layer that moves its logic out of the application code.

Author: Rui Cunha
Email: r.cunha@datagen.eu

About this class

Easypay is a portuguese company that provides multiple payment services: atm, credit cards, transfers and more. They provide full documentation about their webservices, and if you are going to use their services that is really your place to start. This class is just a pratical implementation of their code, allowing the developer to abstract from it's logic and write cleaner, readable code on the application itself.

How it works

Just instantiate the class, and provide the data. You will find your Account Id and API Key in their backoffice, once you have been provided access to it. The endpoint URL used bellow is the one used for testing, you will need to change it on production.

$call=new Easypay();
$call->easypayAccountId='XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX' ;
$call->easypayApiKey= 	'YYYYYYYY-YYYY-YYYY-YYYY-YYYYYYYYYYYY';
$call->easypayEndpointUrl= 'https://api.test.easypay.pt/2.0/single';

$call->requestId= '9999999999';	/*your identifier for this request*/
$call->paymentAmount= 17.57;
$call->documentId= '34534534';	/*your identifier for the document generating this transaction*/
$call->documentNumber= '234234';  /*your identifier document number*/
$call->documentDate='2015-06-28';	/* notice the format */
$call->clientName= 'Rui Manuel';	/* the person who is being requested to pay */
$call->clientEmail= 'someone@somewhere.com';
$call->clientVatNumber= '202333234';
$response = $call->requestReference();
How to set it up

Include the file easypay.php, if you are not using composer. If you are using composer, just type:

composer require hotworks/easypay

If all you need is to generate payment refences, you're good to go.

If want to be notified about payments and process such payment in your system, you will need to setup your own endpoint.

  1. Copy the file myEndpoint.php to your public folder.
  2. At the beggining of your new myEndpoint.php either include the composer autoload file or mannually include the Easypay class.
  3. On the Easypay backoffice, provide them with the public URL of your myEndpoint.php file.
  4. On the class file easypay.php, complete the method processPaymentNotification() with the code that will process your payment. Remember to handle errors and raise exceptions.

That's it.

To do

A lot more can be done using Easypay's webservices. Next: cancel existing references that you no longer want clients to pay.

hotworks/easypay 适用场景与选型建议

hotworks/easypay 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 4 次下载、GitHub Stars 达 0, 最近一次更新时间为 2020 年 10 月 06 日, 在 PHP 生态内属于活跃度较高的组件。

我们在过去多个企业项目中使用过 hotworks/easypay 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 hotworks/easypay 我们能提供哪些服务?
定制开发 / 二次开发

基于 hotworks/easypay 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 4
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 3
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: Unknown
  • 更新时间: 2020-10-06