Skip to content

thepeerstack/laravel-sdk

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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
  • 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:
      • link_id (string)
    • returns: object
  • chargeLink

    • accepts:
      • link_id (string)
      • amount (integer)
    • returns: object
  • authorizeCharge

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

Extra

Refer to the documentation for more information.