Skip to content

Update project homepage #10

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 12, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# clue/mq-react [![Build Status](https://travis-ci.org/clue/php-mq-react.svg?branch=master)](https://travis-ci.org/clue/php-mq-react)
# clue/reactphp-mq [![Build Status](https://travis-ci.org/clue/reactphp-mq.svg?branch=master)](https://travis-ci.org/clue/reactphp-mq)

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

The demonstration purposes, the examples in this documentation use the async
HTTP client [clue/buzz-react](https://github.com/clue/php-buzz-react), but you
HTTP client [clue/reactphp-buzz](https://github.com/clue/reactphp-buzz), but you
may use any Promise-based API with this project. Its API can be used like this:

```php
Expand Down Expand Up @@ -337,7 +337,7 @@ $promise = Queue::all(10, $jobs, array($browser, 'get'));
As stated above, this library provides you a powerful, async API by default.
If, however, you want to integrate this into your traditional, blocking
environment, you may want to look into also using
[clue/block-react](https://github.com/clue/php-block-react).
[clue/reactphp-block](https://github.com/clue/reactphp-block).

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

Please refer to [clue/block-react](https://github.com/clue/php-block-react#readme)
Please refer to [clue/reactphp-block](https://github.com/clue/reactphp-block#readme)
for more details.

> Keep in mind that returning an array of response messages means that the whole
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "clue/mq-react",
"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",
"keywords": ["Message Queue", "Mini Queue", "job", "message", "worker", "queue", "rate limit", "throttle", "concurrency", "ReactPHP", "async"],
"homepage": "https://github.com/clue/php-mq-react",
"homepage": "https://github.com/clue/reactphp-mq",
"license": "MIT",
"authors": [
{
Expand Down