Skip to content

Commit

Permalink
Documentation update
Browse files Browse the repository at this point in the history
  • Loading branch information
mnapoli committed May 30, 2014
1 parent a853eef commit f215f2d
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 2 deletions.
13 changes: 12 additions & 1 deletion doc/Beanstalkd.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
# Using Beanstalkd

The Beanstalkd implementation uses the [Pheanstalk](https://github.com/pda/pheanstalk) library.
The Beanstalkd adapter uses the [Pheanstalk](https://github.com/pda/pheanstalk) library.

You need to require the library in composer:

```json
{
"require": {
"myclabs/work": "*",
"pda/pheanstalk": "~2.0"
}
}
```

On your client side (MVC application for example):

Expand Down
15 changes: 14 additions & 1 deletion doc/RabbitMQ.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
# Using RabbitMQ

This guide is inspired from the official RabbitMQ docs, you should read them first.
The RabbitMQ adapter uses the [php-amqplib](https://github.com/videlalvaro/php-amqplib) library.

You need to require the library in composer:

```json
{
"require": {
"myclabs/work": "*",
"videlalvaro/php-amqplib": "~2.0"
}
}
```

This following is inspired from the official RabbitMQ docs, you should read them first.

On your client side (MVC application for example):

Expand Down

0 comments on commit f215f2d

Please sign in to comment.