PHPackages                             italiansubs/resque-enqueuer - 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. italiansubs/resque-enqueuer

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

italiansubs/resque-enqueuer
===========================

A library that lets you enqueue jobs in Resque from a PHP application

v0.1.4(12y ago)3102MITPHPPHP &gt;=5.3.3

Since Jan 26Pushed 12y agoCompare

[ Source](https://github.com/andreausu/ResqueEnqueuer)[ Packagist](https://packagist.org/packages/italiansubs/resque-enqueuer)[ Docs](http://andreausu.github.com/ResqueEnqueuer)[ RSS](/packages/italiansubs-resque-enqueuer/feed)WikiDiscussions master Synced 1mo ago

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

ResqueEnqueuer
==============

[](#resqueenqueuer)

A library that lets you enqueue Resque jobs from a PHP application.

Requirements
------------

[](#requirements)

- php &gt;= 5.3.3 (&gt;= 5.4 in order to be able to run the tests)
- phpredis

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

[](#installation)

Create a composer.json file with the following content:

```
{
    "require": {
        "italiansubs/resque-enqueuer": "0.1.*"
    }
}
```

Then run

```
$ curl -s https://getcomposer.org/installer | php
$ php composer.phar install
```

You should now have ResqueEnqueuer installed inside your vendor folder: *vendor/italiansubs/resque-enqueuer*

And an handy autoload file to include in you project: *vendor/autoload.php*

How to use
----------

[](#how-to-use)

```
