@@ -32,6 +32,7 @@ much any API that already uses Promises.
3232
3333** Table of contents**
3434
35+ * [ Support us] ( #support-us )
3536* [ Quickstart example] ( #quickstart-example )
3637* [ Usage] ( #usage )
3738 * [ Queue] ( #queue )
@@ -45,6 +46,16 @@ much any API that already uses Promises.
4546* [ Tests] ( #tests )
4647* [ License] ( #license )
4748
49+ ## Support us
50+
51+ We invest a lot of time developing, maintaining and updating our awesome
52+ open-source projects. You can help us sustain this high-quality of our work by
53+ [ becoming a sponsor on GitHub] ( https://github.com/sponsors/clue ) . Sponsors get
54+ numerous benefits in return, see our [ sponsoring page] ( https://github.com/sponsors/clue )
55+ for details.
56+
57+ Let's take these projects to the next level together! 🚀
58+
4859## Quickstart example
4960
5061Once [ installed] ( #install ) , you can use the following code to access an
@@ -336,8 +347,8 @@ $promise = Queue::all(10, $jobs, array($browser, 'get'));
336347#### any()
337348
338349The static ` any(int $concurrency, array $jobs, callable $handler): PromiseInterface<mixed> ` method can be used to
339- concurrently process given jobs through the given ` $handler ` and resolve
340- with first resolution value.
350+ concurrently process the given jobs through the given ` $handler ` and
351+ resolve with first resolution value.
341352
342353This is a convenience method which uses the ` Queue ` internally to
343354schedule all jobs while limiting concurrency to ensure no more than
@@ -474,7 +485,7 @@ This project follows [SemVer](https://semver.org/).
474485This will install the latest supported version:
475486
476487``` bash
477- $ composer require clue/mq-react:^1.2
488+ $ composer require clue/mq-react:^1.3
478489```
479490
480491See also the [ CHANGELOG] ( CHANGELOG.md ) for details about version upgrades.
0 commit comments