PHPackages                             fivesqrd/hive - 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. fivesqrd/hive

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

fivesqrd/hive
=============

Simple Job Queue Client

v0.13.5(3y ago)11.4kPHP

Since Jan 24Pushed 3y ago1 watchersCompare

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

READMEChangelogDependencies (1)Versions (23)Used By (0)

Hive PHP Client
===============

[](#hive-php-client)

Hive is a simple job queue library for PHP that uses DynamoDB for a backend.

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

[](#configuration)

```
$config = [
    'table' => 'My-Table-Name',
    'aws' => [
        'version' => '2012-08-10',
        'region'  => 'eu-west-1',
        'credentials' => [
            'key'    => 'my-key',
            'secret' => 'my-secret',
        ],
    ],
];

```

Preparing a DynamoDb table
--------------------------

[](#preparing-a-dynamodb-table)

Create a local config file say config.php

```
