leonardcodep / mercadopago-sdk-php
Cliente Mercado de Pago API para PHP
Installs: 1 829
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Requires
- php: ^7.3|^8.0|^8.1
- doctrine/annotations: ^1.13.2
- doctrine/common: ^3.2.1
Requires (Dev)
- phpunit/phpunit: 4.4.* || 4.8.* || 9.5.*
This package is not auto-updated.
Last update: 2025-03-29 11:13:57 UTC
README
This library provides developers with a simple set of bindings to help you integrate Mercado Pago API to a website and start receiving payments.
๐ก Requirements
PHP 7.1, 8.0 y 8.1 or higher
๐ป Installation
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 leonardcodep/mercadopago-sdk-php
-
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.
๐ Getting Started
Simple usage looks like:
<?php require_once 'vendor/autoload.php'; // You have to require the library from your Composer vendor folder use MercadoPago\SDK; use MercadoPago\Entity\Shared\Payment; use MercadoPago\Entity\Shared\Payer; try { SDK::setAccessToken("YOUR_ACCESS_TOKEN"); // Either Production or SandBox AccessToken $payment = new Payment(); $payment->transaction_amount = 259; $payment->token = $request->token; $payment->description = "Compra de productos"; $payment->installments = (int) $request->installments; $payment->payment_method_id = $request->payment_method_id; $payment->issuer_id = (int) $request->issuer_id; $payer = new Payer(); $payerForm = $request->payer; $payer->email = $payerForm['email']; $payer->identification = array( "type" => $payerForm['identification']['type'], "number" => $payerForm['identification']['number'] ); $payment->payer = $payer; $payment->save(); if($payment->id === null) { $error_message = 'Unknown error cause'; if(isset($payment->error)) { $error_message = $payment->error->message; } throw new Exception($error_message); } $response = array( "request" => $request, "payment_id" => $payment->id, "status" => $payment->status, "status_detail" => $payment->status_detail, ); } catch (Exception $e) { throw new Exception(trim(trim($e->getMessage()), '"')); } ?>
๐ Documentation
Visit our Dev Site for further information regarding:
- Payments APIs: Spanish / Portuguese
- Mercado Pago checkout: Spanish / Portuguese
- Web Tokenize checkout: Spanish / Portuguese
Check our official code reference to explore all available functionalities.
โค๏ธ Support
If you require technical support, please contact our support team at developers.mercadopago.com