PHPackages                             dubems/laravel-amplify - 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. dubems/laravel-amplify

ActiveLibrary[Payment Processing](/categories/payments)

dubems/laravel-amplify
======================

Amplify payments library for laravel

1.0(7y ago)5132PHPPHP ^5.4.0|^7.0

Since Jun 23Pushed 7y ago1 watchersCompare

[ Source](https://github.com/dubems/laravel-amplify)[ Packagist](https://packagist.org/packages/dubems/laravel-amplify)[ RSS](/packages/dubems-laravel-amplify/feed)WikiDiscussions master Synced today

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

laravel-amplify
===============

[](#laravel-amplify)

Laravel Library for integrating Amplify pay

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

[](#installation)

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

To get the latest version of Laravel Amplify, require like below

```
" composer require dubems/laravel-amplify"

```

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

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

- `Dubems\Amplify\AmplifyServiceProvider::class,`

Also, register the Facade like so:

```
'aliases' => [
    ...
    'Amplify' => Dubems\Amplify\Facades\Amplify::class,
    ...
]
```

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

[](#configuration)

You can publish the configuration file using this command:

```
php artisan vendor:publish --provider="Dubems\Amplify\AmplifyServiceProvider"
```

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

```
