PHPackages                             intagono/openpay - 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. intagono/openpay

ActiveLibrary[Payment Processing](/categories/payments)

intagono/openpay
================

Library that will be used to connect to OpenPay Payment Gateway

29624[1 issues](https://github.com/intagono/openpay/issues)PHP

Since Aug 9Pushed 8y ago4 watchersCompare

[ Source](https://github.com/intagono/openpay)[ Packagist](https://packagist.org/packages/intagono/openpay)[ RSS](/packages/intagono-openpay/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependenciesVersions (1)Used By (0)

Intagono Openpay
================

[](#intagono-openpay)

Library that simplifies the process of [OpenPay Payment Gateway Api](http://www.openpay.mx/)

Installation
------------

[](#installation)

Begin by installing this package through Composer.

```
{
    "require": {
        "intagono/openpay": "dev-master"
    }
}
```

Laravel 5
---------

[](#laravel-5)

Register the following Service Provider and Alias

```
// config/app.php

'providers' => [
    Intagono\Openpay\OpenpayServiceProvider::class,
];

'aliases' => [
    'IntagonoOpenpay' => Intagono\Openpay\OpenpayFacade::class,
];
```

Then, publish the default configuration.

```
php artisan vendor:publish
```

This will add a new configuration file to: `config/openpay.php`. You will need to create these variables in your .env file with the appropriate values.

```
