PHPackages                             phalconvee/laravel-paga - 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. phalconvee/laravel-paga

ActiveLibrary[Payment Processing](/categories/payments)

phalconvee/laravel-paga
=======================

Paga has made it very easy for businesses to accept payments.This Business Service Library is a Laravel/PHP module that helps you make API calls when processing Paga Business Transactions.

v1.0.0(5y ago)025MITPHPPHP ^7.1

Since Jan 21Pushed 5y ago1 watchersCompare

[ Source](https://github.com/phalconVee/laravel-paga)[ Packagist](https://packagist.org/packages/phalconvee/laravel-paga)[ Docs](https://github.com/phalconvee/laravel-paga)[ RSS](/packages/phalconvee-laravel-paga/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)Dependencies (4)Versions (2)Used By (0)

laravel-paga
============

[](#laravel-paga)

[![Latest Version on Packagist](https://camo.githubusercontent.com/2ff984a501bc41d7a1ded0b169de24fa4c6e40c124cee88ea2e137298c6404d8/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7068616c636f6e7665652f6c61726176656c2d706167612e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/phalconvee/laravel-paga)[![Packagist License](https://camo.githubusercontent.com/539a91316643abb05880f7801357f9061b6f5d47d2c0357022d0488bcfc15265/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f706167612f706167612d627573696e6573733f7374796c653d666c61742d737175617265)](https://camo.githubusercontent.com/539a91316643abb05880f7801357f9061b6f5d47d2c0357022d0488bcfc15265/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f6c2f706167612f706167612d627573696e6573733f7374796c653d666c61742d737175617265)[![Build Status](https://camo.githubusercontent.com/0f2271016e47070e49fd7b9a4f35495f30621cd91a027d99f7e6f47be46bd85d/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f7068616c636f6e7665652f6c61726176656c2d706167612f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/phalconvee/laravel-paga)[![Quality Score](https://camo.githubusercontent.com/b28b578e0c5e5500bd9d9c7333b41b803255b6774b74aa5a463cf3b91a12ce3d/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f7068616c636f6e7665652f6c61726176656c2d706167612e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/phalconvee/laravel-paga)[![Total Downloads](https://camo.githubusercontent.com/2d1c8abef9cc3fcda390d36ca8d929bbb275fd706c1eafc85bb64bc6bbec8132/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7068616c636f6e7665652f6c61726176656c2d706167612e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/phalconvee/laravel-paga)

A Laravel package for working with the Paga Business API.

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

[](#installation)

[PHP](https://php.net) 5.4+, and [Composer](https://getcomposer.org) are required.

You can get the latest version of Laravel Paga via composer:

```
composer require phalconvee/laravel-paga
```

You'll need to run `compser install` or `composer update` to download it and have the autoloader updated.

Once Laravel Paga is installed, you need to register the service provider. Open up `config/app.php` and add the following to the providers key

```
'providers' => [
    ...
    Phalconvee\Paga\PagaServiceProvider::class,
    ...
]
```

> If you use **Laravel &gt;= 5.5** you can skip this step and go to [**`configuration`**](https://https://github.com/phalconVee/laravel-paga/laravel-paga#configuration)

- `Phalconvee\Paga\PagaServiceProvider::class`

Also, register the Facade like so:

```
'aliases'=>[
    ...
    'Paga' => Phalconvee\Paga\Facades\Paga::class
    ...
]
```

Configuration
-------------

[](#configuration)

You can publish the configuration file using this command:

```
php artisan vendor:publish --provider="Phalconvee\Paga\PagaServiceProvider"
```

A configuration-file named `paga.php` with some defaults will be placed in your `config` directory:

```
