diff --git a/README.md b/README.md
index af78758..944d36a 100644
--- a/README.md
+++ b/README.md
@@ -8,47 +8,56 @@ The phpredis extension provides an API for communicating with the [Redis](http:/
It is released under the [PHP License, version 3.01](http://www.php.net/license/3_01.txt).
-You can send comments, patches, questions [here on github](https://github.com/phpredis/phpredis/issues), to michael.grunder@gmail.com ([Twitter](https://twitter.com/grumi78), Mastodon), p.yatsukhnenko@gmail.com ([@yatsukhnenko](https://twitter.com/yatsukhnenko)), or n.favrefelix@gmail.com ([@yowgi](https://twitter.com/yowgi)).
-
-## Supporting the project
-PhpRedis will always be free and open source software and if you or your company has found it useful please consider supporting the project. Developing a large, complex, and performant library like PhpRedis takes a great deal of time and effort, and support is greatly appreciated! :heart:
-
-The best way to support the project is through [GitHub Sponsors](https://github.com/sponsors/michael-grunder). Many of the reward tiers grant access to our [Slack](https://phpredis.slack.com) where [myself](https://github.com/michael-grunder) and [Pavlo](https://github.com/yatsukhnenko) are regularly available to answer questions. Additionally this will allow you to provide feedback on which fixes and features to prioritize.
-
-You can also make a one-time contribution with [PayPal](https://www.paypal.me/michaelgrunder/5).
+You can send comments, patches, questions [here on github](https://github.com/phpredis/phpredis/issues), to [Michael](mailto:michael.grunder@gmail.com) ([Twitter](https://twitter.com/grumi78), Mastodon), [Pavlo](mailto:p.yatsukhnenko@gmail.com) ([@yatsukhnenko](https://twitter.com/yatsukhnenko)), or [Nicolas](mailto:n.favrefelix@gmail.com) ([@yowgi](https://twitter.com/yowgi)).
## Sponsors
-
-
-
-
+
+
+
+## Become a Sponsor
+PhpRedis will always be free and open source software and if you or your company has found it useful please consider supporting the project. Developing a large, complex, and performant library like PhpRedis takes a great deal of time and effort, and support is greatly appreciated! :heart:
+
+The ongoing development of PhpRedis is made possible thanks to the generous support of [Relay](https://relay.so), which funds the vast majority of work on the project. Relay is a high-performance in-memory cache and drop-in replacement for PhpRedis, which handles millions of requests per second without breaking a sweat.
+
+The best way to support the project is through [GitHub Sponsors](https://github.com/sponsors/michael-grunder). Many of the reward tiers grant access to our [Slack](https://phpredis.slack.com) where [myself](https://github.com/michael-grunder) and [Pavlo](https://github.com/yatsukhnenko) are regularly available to answer questions. Additionally this will allow you to provide feedback on which fixes and features to prioritize. You can also make a one-time contribution with [PayPal](https://www.paypal.me/michaelgrunder/5).
## Table of contents
1. [Installing/Configuring](#installingconfiguring)
- * [Installation](#installation)
- * [PHP Session handler](#php-session-handler)
- * [Distributed Redis Array](./arrays.md#readme)
- * [Redis Cluster support](./cluster.md#readme)
- * [Redis Sentinel support](./sentinel.md#readme)
- * [Running the unit tests](#running-the-unit-tests)
+ * [Installation](#installation)
+ * [PHP Session handler](#php-session-handler)
+ * [Distributed Redis Array](./arrays.md#readme)
+ * [Redis Cluster support](./cluster.md#readme)
+ * [Redis Sentinel support](./sentinel.md#readme)
+ * [Running the unit tests](#running-the-unit-tests)
2. [API Documentation](#api-documentation)
3. [Classes and methods](#classes-and-methods)
- * [Usage](#usage)
- * [Connection](#connection)
- * [Retry and backoff](#retry-and-backoff)
- * [Server](#server)
- * [Keys and strings](#keys-and-strings)
- * [Hashes](#hashes)
- * [Lists](#lists)
- * [Sets](#sets)
- * [Sorted sets](#sorted-sets)
- * [HyperLogLogs](#hyperloglogs)
- * [Geocoding](#geocoding)
- * [Streams](#streams)
- * [Pub/sub](#pubsub)
- * [Transactions](#transactions)
- * [Scripting](#scripting)
- * [Introspection](#introspection)
+ * [Usage](#usage)
+ * [Connection](#connection)
+ * [Retry and backoff](#retry-and-backoff)
+ * [Server](#server)
+ * [Keys and strings](#keys-and-strings)
+ * [Hashes](#hashes)
+ * [Lists](#lists)
+ * [Sets](#sets)
+ * [Sorted sets](#sorted-sets)
+ * [HyperLogLogs](#hyperloglogs)
+ * [Geocoding](#geocoding)
+ * [Streams](#streams)
+ * [Pub/sub](#pubsub)
+ * [Transactions](#transactions)
+ * [Scripting](#scripting)
+ * [Introspection](#introspection)
## Installing/Configuring