PHPackages                             kenini/amazon-payment - 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. kenini/amazon-payment

ActiveLibrary[Payment Processing](/categories/payments)

kenini/amazon-payment
=====================

Clone Login and Pay with Amazon via tuurbo/amazon-payment

0517PHP

Since Mar 19Pushed 6y ago1 watchersCompare

[ Source](https://github.com/sunh-2087/amazon-payment)[ Packagist](https://packagist.org/packages/kenini/amazon-payment)[ RSS](/packages/kenini-amazon-payment/feed)WikiDiscussions master Synced 6d ago

READMEChangelogDependenciesVersions (3)Used By (0)

Login and Pay with Amazon
=========================

[](#login-and-pay-with-amazon)

Didn't like the official amazon package so i made this one. Its much lighter and easier to setup. I'm using this in production on a ecommerce site and it works well.

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

[](#installation)

Install through Composer.

```
composer require kenini/amazon-payment

```

### Laravel 4 or 5 Setup

[](#laravel-4-or-5-setup)

Next, update app/config/app.php to include a reference to this package's service provider in the providers array and the facade in the aliases array.

```
'providers' => [
   'Kenini\AmazonPayment\AmazonPaymentServiceProvider'
]

```

```
'aliases' => [
    'AmazonPayment' => 'Kenini\AmazonPayment\AmazonPaymentFacade'
]

```

add to the app/config/services.php config file.

```
