承接 syednasharudin/malakatpay-client 相关项目开发

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

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

syednasharudin/malakatpay-client

最新稳定版本:1.0.0

Composer 安装命令:

composer require syednasharudin/malakatpay-client

包简介

Malakatpay Gateway wrapper client

README 文档

README

Unofficial SDK for MalakatPay Payment Gateway

Directory

Installation

Composer

composer require syednasharudin/malakatpay

Alternatively, you can specify as a dependency in your project's existing composer.json file

{
   "require": {
      "syednasharudin/malakatpay-client": "^1.0.0"
   }
}

Usages

After installing, you need to require Composer's autoloader and add your code.

Setup config

$config = [
    'api_key' => getenv('MALAKATPAY_API_KEY'),
    'signature_key' => getenv('MALAKATPAY_X_SIGNATURE')
];

Or use Laravel config file name it as malakatpay.php and leave make() blank

return [
    'api_key' => env('MALAKATPAY_API_KEY'),
    'signature_key' => env('MALAKATPAY_X_SIGNATURE', null),
    'is_sandbox' => env('MALAKATPAY_SANDBOX', env('APP_ENV') != 'production'),
];

Collection

Create collection

MalakatPay::make()
    ->collection()
    ->create("Collection Name");

Get collections

MalakatPay::make()
    ->collection()
    ->fetchList(); 

Update collection name

MalakatPay::make()
    ->collection()
    ->updateCollectionName("CollectionID", "New Name"); 

Get collections by code

MalakatPay::make()
    ->collection()
    ->fetchByCode("CollectionCode"); 

Bills

Create Bill

MalakatPay::make()
    ->bill()
    ->makeBill("COLLECTION CODE")
    ->setCustomer("Amirul", "Amirul", "hello@gmail.com", "60123456789", "Melaka")
    ->setReference("Testing")
    ->setProduct("Product 1", 10.30, 1)
    ->create();

Products

Create product

MalakatPay::make()
    ->product()
    ->create(string|array $title/$arrays, string $code, string $description, $price);

Get products

MalakatPay::make()
    ->product()
    ->getList();

Customer

Create customer

MalakatPay::make()
    ->customer()
    ->create(string|array $firstName/$arrays, string $lastName = null, string $phoneNumber = null, string $email = null);

Get customers

MalakatPay::make()
    ->customer()
    ->getList();

DirectPay

DirectPay Payee

$response = MalakatPay::make()
    ->directPay()
    ->payee("COLLECTION CODE")
    ->getDirectPays();

DirectPay Payeer

$response = MalakatPay::make()
    ->directPay()
    ->payee("COLLECTION CODE")
    ->getTransactions($direct_pay_payer_code);

Check checksum from Redirect/Webhook

MalakatPay::make()->isCheckSumValid($payload); //boolean

Source

Malakat Pay Docs

Todo

  • Other Malakat Pay features. Still under development
  • Unit Test
  • Alter Readme

License

Licensed under the MIT license

统计信息

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

GitHub 信息

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

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-09-19