PHPackages                             valantic-spryker-eco/sqs - 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. [Queues &amp; Workers](/categories/queues)
4. /
5. valantic-spryker-eco/sqs

ActiveLibrary[Queues &amp; Workers](/categories/queues)

valantic-spryker-eco/sqs
========================

SQS implementation as an adapter for spryker/queue

1.0.0(2y ago)00proprietaryPHPPHP &gt;=7.4

Since Aug 1Pushed 1y ago6 watchersCompare

[ Source](https://github.com/valantic-CEC-Deutschland-GmbH/sqs-adapter)[ Packagist](https://packagist.org/packages/valantic-spryker-eco/sqs)[ Docs](https://www.valantic.com)[ RSS](/packages/valantic-spryker-eco-sqs/feed)WikiDiscussions master Synced 2d ago

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

SQS Adapter
===========

[](#sqs-adapter)

SQS implementation as an adapter for spryker/queue

### Install package

[](#install-package)

```
composer req valantic-spryker-eco/sqs

```

### Update shared config

[](#update-shared-config)

`config/Shared/config_default.php`

```
$config[KernelConstants::CORE_NAMESPACES] = [
    ...
    'ValanticSpryker',
];

```

### Update your shared config for SQS (sample for ElasticMQ)

[](#update-your-shared-config-for-sqs-sample-for-elasticmq)

```
$config[SqsConstants::SQS_BASE_URL] = 'http://elasticmq:9324';
$config[SqsConstants::SQS_QUEUE_PATH_PREFIX] = 'queue/';

```

### Update your QueueConfig

[](#update-your-queueconfig)

`\Pyz\Zed\Queue\QueueConfig`

```
...

/**
 * @var string
 */
public const AWS_SQS = 'aws-sqs';

...

/**
 * @return array
 */
protected function getMessageCheckOptions(): array
{
    return [
        QueueConstants::QUEUE_WORKER_MESSAGE_CHECK_OPTION => [
        ...
        static::AWS_SQS => $this->getAwsSqsQueueMessageCheckOptions(),
    ];
}

...

/**
 * @return \Generated\Shared\Transfer\AwsSqsConsumerOptionTransfer
 */
protected function getAwsSqsQueueMessageCheckOptions(): AwsSqsConsumerOptionTransfer
{
    $queueOptionTransfer = new AwsSqsConsumerOptionTransfer();
    $queueOptionTransfer->setCheckMessageCount(true);

    return $queueOptionTransfer;
}

...

```

### Update your ConsoleDependencyProvider

[](#update-your-consoledependencyprovider)

`\Pyz\Zed\Console\ConsoleDependencyProvider`

```
/**
 * @param \Spryker\Zed\Kernel\Container $container
 *
 * @return \Symfony\Component\Console\Command\Command[]
 */
protected function getConsoleCommands(Container $container): array
{
    $commands = [
        ...
        new SqsCreateQueuesConsole(),
        new SqsPurgeAllQueuesConsole(),
        new SqsRemoveQueuesConsole(),
    ];

```

In many cases when you operate SQS next to RabbitMq, it will make sense to also extend the **Queue** module to separate RabbitMq workers from SQS workers. To achieve this you should extend **QueueDependencyProvider** and **QueueBusinessFactory** to create **Task** and **Worker** for RabbitMq and SQS independently.

###  Health Score

23

—

LowBetter than 26% of packages

Maintenance31

Infrequent updates — may be unmaintained

Popularity0

Limited adoption so far

Community12

Small or concentrated contributor base

Maturity44

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 50% 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

Unknown

Total

1

Last Release

1068d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/38a6621b395917bb33ea0dd7970ae8a6295c972e40c26b04d923a3c625abd043?d=identicon)[nxs\_schoenfeld](/maintainers/nxs_schoenfeld)

---

Top Contributors

[![patrickjaja](https://avatars.githubusercontent.com/u/9498720?v=4)](https://github.com/patrickjaja "patrickjaja (6 commits)")[![phischl](https://avatars.githubusercontent.com/u/18677661?v=4)](https://github.com/phischl "phischl (5 commits)")[![nxsschoenfeld](https://avatars.githubusercontent.com/u/62562240?v=4)](https://github.com/nxsschoenfeld "nxsschoenfeld (1 commits)")

---

Tags

spryker-ecoawsqueuesqs

###  Code Quality

Static AnalysisPHPStan

Type Coverage Yes

### Embed Badge

![Health badge](/badges/valantic-spryker-eco-sqs/health.svg)

```
[![Health](https://phpackages.com/badges/valantic-spryker-eco-sqs/health.svg)](https://phpackages.com/packages/valantic-spryker-eco-sqs)
```

###  Alternatives

[spryker/search

Search module

152.9M84](/packages/spryker-search)

PHPackages © 2026

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