PHPackages                             zaffar-saffee/laravel-5-amazon-mws-persistent - 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. [API Development](/categories/api)
4. /
5. zaffar-saffee/laravel-5-amazon-mws-persistent

ActiveLibrary[API Development](/categories/api)

zaffar-saffee/laravel-5-amazon-mws-persistent
=============================================

 Orignall from Peron/laravel5-amazon-mws, implementation to Use Amazon's MWS web services with Laravel 5.x. Focus is on using persistent settings instead of file. (actually did for laravel spark project)

6181PHP

Since May 4Pushed 10y ago2 watchersCompare

[ Source](https://github.com/zaffar-saffee/laravel-5-amazon-mws-persistent)[ Packagist](https://packagist.org/packages/zaffar-saffee/laravel-5-amazon-mws-persistent)[ RSS](/packages/zaffar-saffee-laravel-5-amazon-mws-persistent/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (1)DependenciesVersions (1)Used By (0)

laravel-5-amazon-mws-persistent
===============================

[](#laravel-5-amazon-mws-persistent)

Forked from

Updted this repo when I was trying to complete a spark project that required persistent database settings

Also, I have implemented Auth\_Token required by amazon

========== A PHP package to connect to Amazon's Merchant Web Services (MWS) in an object-oriented manner, with a focus on intuitive usage.

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

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

[](#installation)

1. `composer require zaffar-saffee/laravel-5-amazon-mws-persistent`
2. add the service provider to the providers array in config/app.php:

```
Zaffar\AmazonMws\ServiceProvider::class,

```

There's no facades to add in config/app.php

Persistent settings
-------------------

[](#persistent-settings)

I used anlutro/laravel-settings for persistent settings as the project gives easily configureable option for saving settings per users Please consult docs for anlutro/laravel-settings for more information

```
    Setting::set("storeName","mystore"); // this will be key for store config, you pass this as an option in setstore()
    Setting::set("authToken",""); // required back from
    Setting::set("merchantId","");
    Setting::set("marketplaceId","");
    Setting::set("keyId","");
    Setting::set("secretKey","");
    Setting::set("amazonServiceUrl","https://mws.amazonservices.com/");  // set to valid node
    Setting::set("muteLog","false");  //dev purpose, make it true on production
```

Please see Service Provider and Amazon Core to see how I converted it to Peron's file format configurations Planning it to modify it further

Usage
-----

[](#usage)

Usage is as exactly as of original author (przemekperon/amazon-mws-laravel)

All of the technical details required by the API are handled behind the scenes, so users can easily build code for sending requests to Amazon without having to jump hurdles such as parameter URL formatting and token management.

The general work flow for using one of the objects is this:

1. Create an object for the task you need to perform.
2. Load it up with parameters, depending on the object, using *set\_\_\_\_* methods.
3. Submit the request to Amazon. The methods to do this are usually named *fetch\_\_\_\_* or *submit\_\_\_\_* and have no parameters.
4. Reference the returned data, whether as single values or in bulk, using *get\_\_\_\_* methods.
5. Monitor the performance of the library using the built-in logging system.

Note that if you want to act on more than one Amazon store, you will need a separate object for each store.

Also note that the objects perform best when they are not treated as reusable. Otherwise, you may end up grabbing old response data if a new request fails.

Example Usage
-------------

[](#example-usage)

Here are a couple of examples of the library in use. All of the technical details required by the API are handled behind the scenes, so users can easily build code for sending requests to Amazon without having to jump hurdles such as parameter URL formatting and token management.

Here is an example of a function used to get all warehouse-fulfilled orders from Amazon updated in the past 24 hours:

```
use Zaffar\AmazonMws\AmazonOrderList;

function getAmazonOrders() {
    $amz = new AmazonOrderList("myStore"); //store name matches the array key in the config file
    $amz->setLimits('Modified', "- 24 hours");
    $amz->setFulfillmentChannelFilter("MFN"); //no Amazon-fulfilled orders
    $amz->setOrderStatusFilter(
        array("Unshipped", "PartiallyShipped", "Canceled", "Unfulfillable")
        ); //no shipped or pending
    $amz->setUseToken(); //Amazon sends orders 100 at a time, but we want them all
    $amz->fetchOrders();
    return $amz->getList();
}
```

This example shows a function used to send a previously-created XML feed to Amazon to update Inventory numbers:

```
use Zaffar\AmazonMws\AmazonOrderList;

function sendInventoryFeed($feed) {
    $amz = new AmazonFeed("myStore"); //store name matches the array key in the config file
    $amz->setFeedType("_POST_INVENTORY_AVAILABILITY_DATA_"); //feed types listed in documentation
    $amz->setFeedContent($feed);
    $amz->submitFeed();
    return $amz->getResponse();
}
```

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/94d709b0c463420f301630b9f2abc376760b1085345d6096812d43d83ed6a5a1?d=identicon)[zaffarsaffee](/maintainers/zaffarsaffee)

---

Top Contributors

[![mzaffarsaffee](https://avatars.githubusercontent.com/u/1652341?v=4)](https://github.com/mzaffarsaffee "mzaffarsaffee (5 commits)")

### Embed Badge

![Health badge](/badges/zaffar-saffee-laravel-5-amazon-mws-persistent/health.svg)

```
[![Health](https://phpackages.com/badges/zaffar-saffee-laravel-5-amazon-mws-persistent/health.svg)](https://phpackages.com/packages/zaffar-saffee-laravel-5-amazon-mws-persistent)
```

###  Alternatives

[stripe/stripe-php

Stripe PHP Library

4.0k143.3M480](/packages/stripe-stripe-php)[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M272](/packages/twilio-sdk)[knplabs/github-api

GitHub API v3 client

2.2k15.8M187](/packages/knplabs-github-api)[facebook/php-business-sdk

PHP SDK for Facebook Business

90121.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

73813.7M114](/packages/meilisearch-meilisearch-php)[google/gax

Google API Core for PHP

263103.1M454](/packages/google-gax)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
