Skip to content
This repository has been archived by the owner on Jan 27, 2023. It is now read-only.

Installation doc and missing method #2

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,25 @@ Currently optimizing for Laravel Framework.

This is __NOT__ for Amazon Web Services (AWS) - Cloud Computing Services.

## Installation

This package only works with __Laravel 4__

Install using

```bash
composer require creacoon/amazon-mws-laravel
```

then update your `app/config/app.php`by adding the following Service Provider

```php
'providers' => array(
...
'Creacoon\AmazonMws\AmazonMwsServiceProvider',
...
),
```

## Example Usage
Here are a couple of examples of the library in use.
Expand Down
Loading