From b6c2f4087b57fce8d7e1518f07cf1c7e61e52a91 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20L=C3=BCck?= Date: Sun, 29 Jul 2018 13:18:06 +0200 Subject: [PATCH] Update project homepage --- README.md | 10 +++++----- composer.json | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index f1322a1..6ca7377 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ -# clue/mdns-react [![Build Status](https://travis-ci.org/clue/php-mdns-react.svg?branch=master)](https://travis-ci.org/clue/php-mdns-react) +# clue/reactphp-mdns [![Build Status](https://travis-ci.org/clue/reactphp-mdns.svg?branch=master)](https://travis-ci.org/clue/reactphp-mdns) -Simple, async multicast DNS (mDNS) resolver library, built on top of [React PHP](http://reactphp.org/). +Simple, async multicast DNS (mDNS) resolver for zeroconf networking, built on top of [ReactPHP](https://reactphp.org/). [Multicast DNS](http://www.multicastdns.org/) name resolution is commonly used as part of [zeroconf networking](http://en.wikipedia.org/wiki/Zero-configuration_networking). @@ -68,7 +68,7 @@ $resolver = $factory->createResolver(); The [`Factory`](#factory) creates instances of the `React\Dns\Resolver\Resolver` class from the [react/dns](https://github.com/reactphp/dns) package. -While React's *normal* DNS resolver uses unicast UDP messages (and TCP streams) to query a given nameserver, +While ReactPHP's *normal* DNS resolver uses unicast UDP messages (and TCP streams) to query a given nameserver, this resolver instance uses multicast UDP messages to query all reachable hosts in your network. #### Promises @@ -96,7 +96,7 @@ Please refer to the [DNS documentation](https://github.com/reactphp/dns#readme) 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 should look into also using [clue/block-react](https://github.com/clue/php-block-react). +you should look into also using [clue/reactphp-block](https://github.com/clue/reactphp-block). The resulting blocking code could look something like this: @@ -128,7 +128,7 @@ $promises = array( $ips = Block\awaitAll($promises, $loop); ``` -Please refer to [clue/block-react](https://github.com/clue/php-block-react#readme) for more details. +Please refer to [clue/reactphp-block](https://github.com/clue/reactphp-block#readme) for more details. ## Install diff --git a/composer.json b/composer.json index be12fe6..4b93228 100644 --- a/composer.json +++ b/composer.json @@ -1,8 +1,8 @@ { "name": "clue/mdns-react", - "description": "Multicast DNS (mDNS) resolver for zeroconf networking ala Bonjour/Avahi", + "description": "Simple, async multicast DNS (mDNS) resolver for zeroconf networking, built on top of ReactPHP.", "keywords": ["Multicast DNS", "mDNS", "RFC 6762", "zeroconf", "Bonjour", "Avahi", "ReactPHP", "async"], - "homepage": "https://github.com/clue/php-mdns-react", + "homepage": "https://github.com/clue/reactphp-mdns", "license": "MIT", "authors": [ {