PHPackages                             burak-sevinc/pueue - 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. burak-sevinc/pueue

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

burak-sevinc/pueue
==================

Simple queue for PHP

0.0.1(2y ago)04MITPHPPHP ^8.1

Since Apr 15Pushed 2y ago1 watchersCompare

[ Source](https://github.com/burak-sevinc/pueue)[ Packagist](https://packagist.org/packages/burak-sevinc/pueue)[ RSS](/packages/burak-sevinc-pueue/feed)WikiDiscussions main Synced yesterday

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

[![Scrutinizer Quality Score](https://camo.githubusercontent.com/10027edac1f5e51a71708770c59f744de1c0e15c1afd150efb5358e3aa9f4ab4/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f627572616b2d736576696e632f70756575652f6261646765732f7175616c6974792d73636f72652e706e673f623d6d61696e)](https://camo.githubusercontent.com/10027edac1f5e51a71708770c59f744de1c0e15c1afd150efb5358e3aa9f4ab4/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f627572616b2d736576696e632f70756575652f6261646765732f7175616c6974792d73636f72652e706e673f623d6d61696e)[![Scrutinizer Build](https://camo.githubusercontent.com/27420c8332c1d454c121bce8e8730ff8bc136311081c7de6c98f9f70c39158ab/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f627572616b2d736576696e632f70756575652f6261646765732f6275696c642e706e673f623d6d61696e)](https://camo.githubusercontent.com/27420c8332c1d454c121bce8e8730ff8bc136311081c7de6c98f9f70c39158ab/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f627572616b2d736576696e632f70756575652f6261646765732f6275696c642e706e673f623d6d61696e)[![Scrutinizer Quality Score](https://camo.githubusercontent.com/a25ede990768c6b0dd9261dc595bd4356ac05400cc77a2f220bf979b581ffaa0/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f627572616b2d736576696e632f70756575652f6261646765732f636f7665726167652e706e673f623d6d61696e)](https://camo.githubusercontent.com/a25ede990768c6b0dd9261dc595bd4356ac05400cc77a2f220bf979b581ffaa0/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f627572616b2d736576696e632f70756575652f6261646765732f636f7665726167652e706e673f623d6d61696e)

Pueue - PHP Simple Queue
========================

[](#pueue---php-simple-queue)

Pueue, is a flexible PHP library for managing queues. It currently supports AWS SQS and plans to extend support to Database and Redis queues. It provides an easy-to-use API for sending, receiving, and deleting messages.

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

[](#installation)

with Composer:

```
composer require burak-sevinc/pueue

```

Usage
-----

[](#usage)

First, you need to create a Queue instance. You can use the QueueFactory for this:

```
    use BurakSevinc\Pueue\QueueFactory;
    $queue = QueueFactory::create($queueUrl);
```

Then, you can create a QueueService instance with the Queue instance:

```
    use BurakSevinc\Pueue\QueueService;
    $queueService = new QueueService($queue);
```

Now you can use the QueueService to interact with the queue:

```
    // Send a message
    $queueService->send('Hello, world!');

    // Receive a message
    $message = $queueService->receive();

    // Receive all messages
    $messages = $queueService->receiveAll();

    // Delete a message
    $receiptHandle = $message['receiptHandle'];
    $queueService->delete($receiptHandle);

    // Delete all messages
    $queueService->deleteAll();
```

Configuration
-------------

[](#configuration)

The QueueFactory uses the Config class to get configuration values. You need to set the following configuration values:

```
    QUEUE_DRIVER: The type of queue to use. Currently, only 'sqs' is supported.
    AWS_REGION: The AWS region for SqsQueue.
    AWS_ACCESS_KEY_ID: The AWS access key ID for SqsQueue.
    AWS_SECRET_ACCESS_KEY: The AWS secret access key for SqsQueue.

```

Testing
-------

[](#testing)

You can run the tests with:

```
    composer test
```

License
-------

[](#license)

**Pueue** is open-sourced software licensed under the **MIT** license.

###  Health Score

19

—

LowBetter than 9% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity40

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

Unknown

Total

1

Last Release

809d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/33890174?v=4)[Burak Sevinç](/maintainers/burak-sevinc)[@burak-sevinc](https://github.com/burak-sevinc)

---

Top Contributors

[![burak-sevinc](https://avatars.githubusercontent.com/u/33890174?v=4)](https://github.com/burak-sevinc "burak-sevinc (6 commits)")

---

Tags

awsphpqueuesqs

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/burak-sevinc-pueue/health.svg)

```
[![Health](https://phpackages.com/badges/burak-sevinc-pueue/health.svg)](https://phpackages.com/packages/burak-sevinc-pueue)
```

###  Alternatives

[matomo/matomo

Matomo is the leading Free/Libre open analytics platform

21.7k38.9k](/packages/matomo-matomo)[pressbooks/pressbooks

Pressbooks is an open source book publishing tool built on a WordPress multisite platform. Pressbooks outputs books in multiple formats, including PDF, EPUB, web, and a variety of XML flavours, using a theming/templating system, driven by CSS.

45444.2k1](/packages/pressbooks-pressbooks)[tempest/framework

The PHP framework that gets out of your way.

2.2k34.4k15](/packages/tempest-framework)[showdoc/showdoc

ShowDoc is a tool greatly applicable for an IT team to share documents online

12.8k7.1k](/packages/showdoc-showdoc)[jasara/php-amzn-selling-partner-api

A fluent interface for Amazon's Selling Partner API in PHP

1348.7k1](/packages/jasara-php-amzn-selling-partner-api)[duxweb/dux-lite

The lightweight framework based on slim php

161.0k9](/packages/duxweb-dux-lite)

PHPackages © 2026

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