承接 mabiola/paystack-php-lib 相关项目开发

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

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

mabiola/paystack-php-lib

Composer 安装命令:

composer require mabiola/paystack-php-lib

包简介

A PHP Library for https://paystack.co

README 文档

README

A PHP library for Paystack.

This library is no longer maintained. Please use the official library.

Build Status Coverage Status

Requirements

Installation

Via Composer

Add the following to your composer.json file and run composer install

"mabiola/paystack-php-lib" : "~1.0"

Then use composer's autoload.

require_once __DIR__ . '/vendor/autoload.php';

NOTE: if you are using a PHP Framework for example, Laravel, you do not need to add the composer autoload to your file(s) as it is already done. (see it in bootstrap/autoload; bootstrap/app.php for Lumen; ).

Other Installation Methods

No other installation methods! Use composer!

Why?

  • It's doing PHP the right way!
  • It's the right thing to do.
  • If you still need convincing, this might help.

Seriously, please... use composer. Thank you.

Configurations

Add the following keys to your .env file.

#PAYSTACK LIB MODE [test | live]
PAYSTACK_MODE = test
#YOUR PAYSTACK KEYS
PAYSTACK_LIVE_PUBLIC_KEY = my_paystack_live_public_keys
PAYSTACK_LIVE_SECRET_KEY = my_paystack_live_secret_key
PAYSTACK_TEST_PUBLIC_KEY = my_paystack_test_public_key
PAYSTACK_TEST_SECRET_KEY = my_paystack_test_secret_key

Replace the keys with your actual Paystack keys - you can find this on the Developer/API panel of your settings page. Use the PAYSTACK_MODE to switch between live and test mode for Paystack.

That's is! You are ready to receive payments!

Usage

Using the library is simple, make a Paystack Library object and use this object to perform operations on Paystack. To create the Paystack Library object, do;

$paystackLibObject = \MAbiola\Paystack\Paystack::make();

or if you'd rather provide the exact key (if you are not using an env file);

$paystackLibObject = \MAbiola\Paystack\Paystack::make("my-paystack-private-key");

Now lets walk through some of the operations you can perform with the object you just created.

  1. Initialize a One Time Transaction

    According to Paystack's documentation, to charge a customer, you create a one time transaction for which you get an authorization url which you redirect your page to so that your customer can enter their card details and pay for your service(s). To do this with the library, pass the amount to be charged, the customer email, and the optional plan (if this is a transaction to create a subscription. you can either enter the plan code here or the plan object - more on this coming soon).

     $getAuthorization = $paystackLibObject->startOneTimeTransaction('10000', 'me@me.com');
    

    You will expect an array that contains the authorization url authorization_url to redirect to to accept this payment, and the unique auto-generated transaction reference reference.

  2. Verify Transactions

    To verify a transaction, simply call the function like;

     $verifyTransaction = $paystackLibObject->verifyTransaction('unique_transaction_ref');
    

    if transaction is successful, this function returns an array containing the transaction details else $verifyTransaction will be false.

  3. Charging Returning Customers

    Now, when you successfully charge a customer, an authorization key that represents the card of the customer is generated - you can find this in the array you get back when you verify a transaction. Therefore, the next time you want to charge this customer, you can use this authorization code to charge said customer. To do this, just call the function like;

     $chargeReturningCustomer = $paystackLibObject->chargeReturningTransaction('authorization_code', 'me@me.com', '10000');
    

    if transaction is successful, this function returns an array containing the transaction details.

  4. Customer

    • Retrieve Customer Data

      You can retrieve customer details by passing the customer code to the getCustomer to get a customer object.

        $customer = $paystackLibObject->getCustomer('customer_code');
      

      If the operation is successful, you get a customer object which you can call a $newCustomer->toArray() to get the details as an array or you can do a get passing an attribute to retrieve, or a list of attributes as arguments or an array of attributes. e.g. $newCustomer->get(['first_name', 'customer_code', 'subscriptions', 'authorizations']); or $newCustomer->get('subscriptions');

    • Create Customer

      To create a customer, pass the customer first name, last name, email and phone to the createCustomer method, like;

        $newCustomer = $paystackLibObject->createCustomer('first_name', 'last_name', 'email', 'phone');
      

      If the operation is successful, a customer object is returned.

    • Update Customer Data

      You can update the customer details by passing the customer code and update data as an array with attributes to update as keys and the update value as the value to the updateCustomerData method, like;

        $updatedCustomer = $paystackLibObject->updateCustomerData('customer_code',['last_name' => 'new_last_name']);
      

      If the operation is successful, the customer object is returned.

    • Retrieve All Customers

      To retrieve all your customers, call the getCustomers method on the PaystackLibObject. Expect an array of customer objects.

        $myCustomers = $paystackLibObject->getCustomers();
      
  5. Plans

    • Retrieve Plan Details

      You can retrieve the details of a plan by passing the plan code to the getPlan to get a plan object.

        $plan = $paystackLibObject->getPlan('plan_code');
      

      If the operation is successful, you get a plan object which you can call a $plan->toArray() on to get the details as an array or you can do a get, passing an attribute to retrieve, or a list of attributes as arguments or an array of attributes. e.g. $plan->get(['name', 'plan_code', 'subscriptions', 'hosted_page_url']); or $plan->get('subscriptions');

    • Create A New Plan

      To create a plan, pass the plan's name, description, amount (not in kobo apparently) and the currency (NGN | USD) to the createPlan method, like;

        $newPlan = $paystackLibObject->createPlan('Random_Plan_1000', 'Random 1000NGN Plan', '1000', 'NGN');
      

      If the operation is successful, a plan object is returned.

    • Update Plan Data

      You can update the plan details by passing the plan code and update data as an array with attributes to update as keys and the update value as the value to the updatePlan method, like;

        $updatedPlan = $paystackLibObject->updatePlan('plan_code', ['hosted_page_url' => 'http://somerandomu.rl', 'hosted_page' => true]);
      

      If the operation is successful, the plan object is returned.

    • Retrieve All Plans

      To retrieve all your plans, call the getPlans method on the PaystackLibObject. Expect an array of plans objects.

        $myPlans = $paystackLibObject->getPlans();
      
  6. Other Transactions Operations

    • Get Details of A Transaction To get the details of a transaction, pass the transaction id to the transactionDetails function. Expect a transaction object on success or a thrown exception. And as usual you can perform the toArray and get operations on it as you can on the customer and plan objects. Also, you can call verify() on this object to verify the transaction.

        $transactionDetails = $paystackLibObject->transactionDetails('transaction_id');
      
    • Get All Transactions To retrieve all transactions, call the allTranactions function on the paystack library object. An array of transaction objects is returned on success or an exception thrown on error.

        $allMyTransactions = $paystackLibObject->allTransactions();
      
    • Transaction Totals To get a cummulative view of your successful transactions, use the transactionTotals function. An array with total_volume, total_transactions, and pending_transfers as keys is returned. or ofcourse, an exception when something goes wrong.

        $totals = $paystackLibObject->transactionsTotals();
      
  7. Exceptions

    Errors are bound to occur, but not to worry, the library contain descriptive exceptions and methods/functions to get the error details. To get the error message when an exception is thrown, call getErrors() on the exception object. e.g.

     try {
     	$paystackLibObject->getPlan('plan_code');
     } catch (PaystackNotFoundException $e) {
     	print_r($e->getErrors());
     }
    

    Possible Exceptions;

    • PaystackInternalServerError
    • PaystackInvalidTransactionException: Thrown when a unique transaction reference could not be generated.
    • PaystackNotFoundException: Thrown when the requested object/resource can not be found
    • PaystackUnauthorizedException: Thrown when the authorization keys can not be found.
    • PaystackUnsupportedOperationException: Thrown when the operation you are trying to perform is not supported by Paystack.
    • PaystackValidationException: Thrown when validation errors occur. You can view validation errors by calling getValidationErrors() on the exception object. getValidationErrors() returns an array with attributes failing validation and the reasons.

Contributing

I very much welcome your contributions, fork and send me a pull request. Remember to write tests. Or you can open issues to report bugs.

Also, if you like this library, star the repo. Or if you have questions or just want to give me a shout, you can reach me on twitter

License

MIT.

mabiola/paystack-php-lib 适用场景与选型建议

mabiola/paystack-php-lib 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 2.04k 次下载、GitHub Stars 达 26, 最近一次更新时间为 2016 年 02 月 02 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「library」 「paystack」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

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

围绕 mabiola/paystack-php-lib 我们能提供哪些服务?
定制开发 / 二次开发

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

BUG 修复 & 性能优化

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

项目外包 & 长期维护

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

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

统计信息

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

GitHub 信息

  • Stars: 26
  • Watchers: 6
  • Forks: 8
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2016-02-02