sirrobot01 / laravel-sdk

Official Laravel package for thepeer

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Thepeer Laravel SDK

Screen Shot 2021-08-12 at 12 32 27 PM

Installation

composer require thepeer/sdk

Usage

Initiate

<?php

use Thepeer\Sdk\Thepeer;

$thepeer = new Thepeer("your-secret-key");

$thepeer->chargeLink("lost-in-the-world", 5000, "Benz");

Available methods

  • validateSiganture

    • accepts:
      • request (object)
    • returns: boolean
  • getSendReceipt

    • accepts:
      • receipt_id (string)
    • returns: object
  • processSendReceipt

    • accepts:
      • receipt_id (string)
      • event (string)
    • returns: object
  • indexUser

    • accepts:
      • name (string)
      • email (string)
      • identifier (string)
    • returns: object
  • updateUser

    • accepts:
      • reference (string)
      • identifier (string)
    • returns: object
  • deleteUser

    • accepts:
      • reference (string)
    • returns: boolean
  • getLink

    • accepts:
      • lind_id (string)
    • returns: object
  • chargeLink

    • accepts:
      • lind_id (string)
      • amount (integer)
    • returns: object
  • authorizaDirectCharge

    • accepts:
      • reference (string)
      • event (string)
    • returns: object

Extra

Refer to the documentation for more information.

About

Official Laravel package for thepeer

License:Apache License 2.0


Languages

Language:PHP 100.0%