|
1 | | -# clue/mq-react [](https://travis-ci.org/clue/php-mq-react) |
| 1 | +# clue/reactphp-mq [](https://travis-ci.org/clue/reactphp-mq) |
2 | 2 |
|
3 | 3 | Mini Queue, the lightweight in-memory message queue to concurrently do many (but not too many) things at once, |
4 | 4 | built on top of [ReactPHP](https://reactphp.org/). |
@@ -143,7 +143,7 @@ This library works under the assumption that you want to concurrently handle |
143 | 143 | async operations that use a [Promise](https://github.com/reactphp/promise)-based API. |
144 | 144 |
|
145 | 145 | The demonstration purposes, the examples in this documentation use the async |
146 | | -HTTP client [clue/buzz-react](https://github.com/clue/php-buzz-react), but you |
| 146 | +HTTP client [clue/reactphp-buzz](https://github.com/clue/reactphp-buzz), but you |
147 | 147 | may use any Promise-based API with this project. Its API can be used like this: |
148 | 148 |
|
149 | 149 | ```php |
@@ -337,7 +337,7 @@ $promise = Queue::all(10, $jobs, array($browser, 'get')); |
337 | 337 | As stated above, this library provides you a powerful, async API by default. |
338 | 338 | If, however, you want to integrate this into your traditional, blocking |
339 | 339 | environment, you may want to look into also using |
340 | | -[clue/block-react](https://github.com/clue/php-block-react). |
| 340 | +[clue/reactphp-block](https://github.com/clue/reactphp-block). |
341 | 341 |
|
342 | 342 | The resulting blocking code that awaits a number of concurrent HTTP requests |
343 | 343 | could look something like this: |
@@ -384,7 +384,7 @@ function download(array $uris) |
384 | 384 | } |
385 | 385 | ``` |
386 | 386 |
|
387 | | -Please refer to [clue/block-react](https://github.com/clue/php-block-react#readme) |
| 387 | +Please refer to [clue/reactphp-block](https://github.com/clue/reactphp-block#readme) |
388 | 388 | for more details. |
389 | 389 |
|
390 | 390 | > Keep in mind that returning an array of response messages means that the whole |
|
0 commit comments