PHPackages                             ireisaac/mws - 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. ireisaac/mws

ActiveLibrary[API Development](/categories/api)

ireisaac/mws
============

mws api

v0.0.3(10y ago)32874[1 issues](https://github.com/IreIsaac/Mws/issues)MITPHP

Since Sep 13Pushed 10y ago1 watchersCompare

[ Source](https://github.com/IreIsaac/Mws)[ Packagist](https://packagist.org/packages/ireisaac/mws)[ RSS](/packages/ireisaac-mws/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (2)Dependencies (2)Versions (5)Used By (0)

Simple MWS
==========

[](#simple-mws)

package to help simplify requests to MWS. Heavily relys on GuzzleHttp.

Make sure to add the .env file in the root of your project, or add to your .env file, the following lines. There is also .env.example file included.

```
MWS_SELLER_ID=
MWS_MARKETPLACE_ID=
MWS_DEVELOPER_ACCOUNT_NUMBER=
MWS_SECRET_KEY=
MWS_SIGNATURE_METHOD=
MWS_SIGNATURE_VERSION=

AWS_ACCESS_KEY_ID=
```

Installation In Laravel with Composer
-------------------------------------

[](#installation-in-laravel-with-composer)

```
composer require ireisaac\mws
```

```
// in your config/app.php

'providers' => [
	...
	IreIsaac\Mws\Support\MwsServiceProvider::class,
],

'aliases' => [
	...
	'Mws'       => IreIsaac\Mws\Support\MwsFacade::class,
],
```

### DON'T FORGET

[](#dont-forget)

after adding the service provider, in the root of your laravel project run:

```
php artisan vendor:publish
```

Laravel Example:
----------------

[](#laravel-example)

The goal is to be able to call any MWS operation as a static method and pass any query params needed/wanted as an associative array.

```
use Mws;
use Carbon\Carbon;

public function search($query)
{
	$response = Mws::listMatchingProducts(['Query' => $query]);

	return $response->xml();
}

public function orders()
{
	// Orders from the last week
	$response = Mws::ListOrders([
		'CreatedAfter' => Carbon::now()->subWeek()->toIso8601String()
	]);

	return $response->xml();
}
```

Notice you can call operations formatted with the first letter capitalized (studly case), or lowercase (snake case).

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance13

Infrequent updates — may be unmaintained

Popularity17

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity56

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.

###  Release Activity

Cadence

Every ~0 days

Total

3

Last Release

3900d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/e4d77f7ce36997c9b5cf61ce5530714322442e7a7836a0b4d94a9f0ec3b7cb2d?d=identicon)[IreIsaac](/maintainers/IreIsaac)

---

Top Contributors

[![IreIsaac](https://avatars.githubusercontent.com/u/8124171?v=4)](https://github.com/IreIsaac "IreIsaac (15 commits)")

---

Tags

laravelamazonmws

### Embed Badge

![Health badge](/badges/ireisaac-mws/health.svg)

```
[![Health](https://phpackages.com/badges/ireisaac-mws/health.svg)](https://phpackages.com/packages/ireisaac-mws)
```

###  Alternatives

[revolution/laravel-amazon-product-api

Amazon Product Advertising API for Laravel

7950.2k](/packages/revolution-laravel-amazon-product-api)[sonnenglas/laravel-amazon-mws

Use Amazon's MWS web services with Laravel ^7.x. Based on creacoon/amazon-mws-laravel package and modified to make it compatible with latest Laravel releases (+ bugfixes).

644.5k](/packages/sonnenglas-laravel-amazon-mws)

PHPackages © 2026

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