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 1mo ago

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 10% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity39

Early-stage or recently created project

 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

757d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/d97ef1d50c3b1edffe6527713adaad1dd33f6d96d25c384214fcf1953f0f3ea3?d=identicon)[burak-sevinc](/maintainers/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

[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.

44643.1k1](/packages/pressbooks-pressbooks)[palpalani/laravel-sqs-queue-json-reader

Custom SQS queue reader for Laravel

26109.8k](/packages/palpalani-laravel-sqs-queue-json-reader)[maqe/laravel-sqs-fifo

Laravel package that enables support for SQS FIFO Queue

15137.2k](/packages/maqe-laravel-sqs-fifo)[gilbitron/sqsd

A replica of the AWS Elastic Beanstalk worker SQS daemon (sqsd) in PHP

332.6k](/packages/gilbitron-sqsd)[tedicela/sqs-simple

PHP package for consuming AWS SQS queue in the simple way

1667.8k](/packages/tedicela-sqs-simple)

PHPackages © 2026

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