PHPackages                             uchamb/faktory-worker - 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. uchamb/faktory-worker

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

uchamb/faktory-worker
=====================

A PHP implementation of the client and worker patterns for Faktory

014PHP

Since Mar 15Pushed 4y agoCompare

[ Source](https://github.com/uchamb/faktory-client-php)[ Packagist](https://packagist.org/packages/uchamb/faktory-worker)[ RSS](/packages/uchamb-faktory-worker/feed)WikiDiscussions master Synced 2d ago

READMEChangelogDependenciesVersions (1)Used By (0)

Faktory Worker PHP
==================

[](#faktory-worker-php)

**This project is a work in progress and open to suggestions and pull requests.**

This is a client implementation for the [Faktory](http://contribsys.com/faktory/) worker server.

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

[](#installation)

This project has not yet been pushed to Packagist, so you will need to add an additional repository to your Composer settings.

```
{
  "repositories": [
    {
      "type": "vcs",
      "url": "https://github.com/camuthig/faktory_worker_php"
    }
  ]
}
```

You can then require the library:

```
composer require camuthig/faktory-worker
```

Usage
-----

[](#usage)

At this time, this library makes no assumption as to how the worker itself should be implemented. This means that all that is provided are the basic building blocks for sending messages to the Faktory server and receiving them again.

Producing messages is simple. Given an instance of a `ProducerInterface`, you can call the `push` function.

```
