Stars: 256
Forks: 205
Pull Requests: 187
Issues: 0
Watchers: 51
Last Updated: 2023-09-15 14:30:02
Mercado Pago's Official PHP SDK
License: MIT License
Languages: PHP
This library provides developers with a simple set of bindings to help you integrate Mercado Pago API to a website and start receiving payments.
PHP 5.6, 7.1 or higher
First time using Mercado Pago? Create your Mercado Pago account, if you donβt have one already.
Download Composer if not already installed
On your project directory run on the command line
composer require "mercadopago/dx-php:2.5.5" for PHP7 or composer require "mercadopago/dx-php:1.12.5" for PHP5.6.
Copy the access_token in the credentials section of the page and replace YOUR_ACCESS_TOKEN with it.
That's it! Mercado Pago SDK has been successfully installed.
Simple usage looks like:
<?php
require_once 'vendor/autoload.php'; // You have to require the library from your Composer vendor folder
MercadoPago\SDK::setAccessToken("YOUR_ACCESS_TOKEN"); // Either Production or SandBox AccessToken
$payment = new MercadoPago\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" => "[email protected]"
);
$payment->save();
echo $payment->status;
?>Visit our Dev Site for further information regarding:
Check our official code reference to explore all available functionalities.
If you require technical support, please contact our support team at developers.mercadopago.com
MIT license. Copyright (c) 2018 - Mercado Pago / Mercado Libre
For more information, see the LICENSE file.