PHPackages                             gjae/laravel-mercadopago - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Payment Processing](/categories/payments)
4. /
5. gjae/laravel-mercadopago

ActiveLibrary[Payment Processing](/categories/payments)

gjae/laravel-mercadopago
========================

0.1.0(6y ago)14593MITPHP

Since May 12Pushed 6y ago1 watchersCompare

[ Source](https://github.com/gjae/laravel-mercadopago)[ Packagist](https://packagist.org/packages/gjae/laravel-mercadopago)[ RSS](/packages/gjae-laravel-mercadopago/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependencies (2)Versions (2)Used By (0)

Instalación
-----------

[](#instalación)

Ejecute el siguiente comando

```
composer require gjae/laravel-mercadopago
```

Configuración básica
--------------------

[](#configuración-básica)

en su archivo `config/app.php` agregue las siguientes lineas (SOLO PARA VERSIONES DE LARAVEL &lt;= 5.4):

en su arreglo de proveedores de servicio ( providers ):

```
Gjae\MercadoPago\MPServiceProvider::class,
```

agregue el siguiente facade a su lista de aliases (SOLO PARA VERSIONES DE LARAVEL &lt;= 5.4):

```
'MercadoPago' => Gjae\MercadoPago\Facade::class,
```

por ultimo ejecute el siguiente comando:

```
php artisan vendor:publish --provider="Gjae\MercadoPago\MPServiceProvider"
```

Y por ultimo ejecutar las migraciones:

```
php artisan migrate
```

Ahora vaya al archivo `config/mercadopago.php` y agregue su configuración, su archivo se vera similar a esto:

```
