Skip to content

Commit 96df8ef

Browse files
authored
Merge pull request #10 from clue-labs/name
Update project homepage
2 parents 837eb16 + 4b78e61 commit 96df8ef

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# clue/mq-react [![Build Status](https://travis-ci.org/clue/php-mq-react.svg?branch=master)](https://travis-ci.org/clue/php-mq-react)
1+
# clue/reactphp-mq [![Build Status](https://travis-ci.org/clue/reactphp-mq.svg?branch=master)](https://travis-ci.org/clue/reactphp-mq)
22

33
Mini Queue, the lightweight in-memory message queue to concurrently do many (but not too many) things at once,
44
built on top of [ReactPHP](https://reactphp.org/).
@@ -143,7 +143,7 @@ This library works under the assumption that you want to concurrently handle
143143
async operations that use a [Promise](https://github.com/reactphp/promise)-based API.
144144

145145
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
147147
may use any Promise-based API with this project. Its API can be used like this:
148148

149149
```php
@@ -337,7 +337,7 @@ $promise = Queue::all(10, $jobs, array($browser, 'get'));
337337
As stated above, this library provides you a powerful, async API by default.
338338
If, however, you want to integrate this into your traditional, blocking
339339
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).
341341

342342
The resulting blocking code that awaits a number of concurrent HTTP requests
343343
could look something like this:
@@ -384,7 +384,7 @@ function download(array $uris)
384384
}
385385
```
386386

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)
388388
for more details.
389389

390390
> Keep in mind that returning an array of response messages means that the whole

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "clue/mq-react",
33
"description": "Mini Queue, the lightweight in-memory message queue to concurrently do many (but not too many) things at once, built on top of ReactPHP",
44
"keywords": ["Message Queue", "Mini Queue", "job", "message", "worker", "queue", "rate limit", "throttle", "concurrency", "ReactPHP", "async"],
5-
"homepage": "https://github.com/clue/php-mq-react",
5+
"homepage": "https://github.com/clue/reactphp-mq",
66
"license": "MIT",
77
"authors": [
88
{

0 commit comments

Comments
 (0)