cobroinmediato/pagospyme-sdk-public-api-php

1.2.13 2021-07-20 06:54 UTC

This package is auto-updated.

Last update: 2024-04-20 13:01:35 UTC


README

This library provides developers with a simple set of bindings to the Mercado Pago API.

PHP Versions Supported:

The SDK supports PHP 5.6 or major

Installation

Using Composer

  1. Download Composer if not already installed
  2. Go to your project directory and run composer require "cobroinmediato/pagospyme-sdk-public-api-php" on the command line.
  3. This how your directory structure would look like.
  4. Thats all, you have Mercado Pago SDK installed.

Quick Start

  1. You have to require the library from your Composer vendor folder.
require __DIR__  . '/vendor/autoload.php';
  1. Setup your credentials

You have two types of credentials:

  • For API or custom checkout:
    PagosPyme\SDK::setAccessToken("YOUR_ACCESS_TOKEN");      // On Production
    PagosPyme\SDK::setAccessToken("YOUR_TEST_ACCESS_TOKEN"); // On Sandbox
  • For Web-checkout:
    PagosPyme\SDK::setClientId("YOUR_CLIENT_ID");
    PagosPyme\SDK::setClientSecret("YOUR_CLIENT_SECRET");
  1. Using resource objects.

You can interact with all the resources available in the public API, to this each resource is represented by classes according to the following diagram:

Sample

  <?php
  
    require __DIR__  . '/vendor/autoload.php';

    PagosPyme\SDK::setAccessToken("YOUR_ACCESS_TOKEN");

    $payment = new PagosPyme\Payment();

    $payment->transaction_amount = 141;
    $payment->token = "YOUR_CARD_TOKEN";
    $payment->description = "Ergonomic Silk Shirt";
    $payment->installments = 1;
    $payment->payment_method_id = "visa";
    $payment->payer = array(
      "email" => "larue.nienow@hotmail.com"
    );
 
    echo $payment->status;
    
  ?>

Support