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.
Requirements
- PHP 5.5+
- Composer
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.
-
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_urlto redirect to to accept this payment, and the unique auto-generated transaction referencereference. -
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
$verifyTransactionwill befalse. -
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.
-
Customer
-
Retrieve Customer Data
You can retrieve customer details by passing the customer code to the
getCustomerto 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 agetpassing 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
createCustomermethod, 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
updateCustomerDatamethod, 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
getCustomersmethod on the PaystackLibObject. Expect an array of customer objects.$myCustomers = $paystackLibObject->getCustomers();
-
-
Plans
-
Retrieve Plan Details
You can retrieve the details of a plan by passing the plan code to the
getPlanto 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 aget, 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
createPlanmethod, 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
updatePlanmethod, 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
getPlansmethod on the PaystackLibObject. Expect an array of plans objects.$myPlans = $paystackLibObject->getPlans();
-
-
Other Transactions Operations
-
Get Details of A Transaction To get the details of a transaction, pass the transaction id to the
transactionDetailsfunction. Expect a transaction object on success or a thrown exception. And as usual you can perform thetoArrayandgetoperations on it as you can on the customer and plan objects. Also, you can callverify()on this object to verify the transaction.$transactionDetails = $paystackLibObject->transactionDetails('transaction_id'); -
Get All Transactions To retrieve all transactions, call the
allTranactionsfunction 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
transactionTotalsfunction. An array withtotal_volume,total_transactions, andpending_transfersas keys is returned. or ofcourse, an exception when something goes wrong.$totals = $paystackLibObject->transactionsTotals();
-
-
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 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 mabiola/paystack-php-lib 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
PHP Implementation of Paystack API
Inbox pattern process implementation for your Laravel Applications
A simple interface to Paystack's subscription billing services. It takes the pain of implementing subscription management off you.
A Laravel Package for Paystack
Core library that defines common interfaces used by the rest of the intahwebz..
Amqp classes
统计信息
- 总下载量: 2.04k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 26
- 点击次数: 3
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-02-02