Skip to content

Commit 1861cf3

Browse files
authored
Merge pull request #10 from clue-labs/name
Update project homepage
2 parents 6d1039a + b6c2f40 commit 1861cf3

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

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

3-
Simple, async multicast DNS (mDNS) resolver library, built on top of [React PHP](http://reactphp.org/).
3+
Simple, async multicast DNS (mDNS) resolver for zeroconf networking, built on top of [ReactPHP](https://reactphp.org/).
44

55
[Multicast DNS](http://www.multicastdns.org/) name resolution is commonly used
66
as part of [zeroconf networking](http://en.wikipedia.org/wiki/Zero-configuration_networking).
@@ -68,7 +68,7 @@ $resolver = $factory->createResolver();
6868

6969
The [`Factory`](#factory) creates instances of the `React\Dns\Resolver\Resolver` class from the [react/dns](https://github.com/reactphp/dns) package.
7070

71-
While React's *normal* DNS resolver uses unicast UDP messages (and TCP streams) to query a given nameserver,
71+
While ReactPHP's *normal* DNS resolver uses unicast UDP messages (and TCP streams) to query a given nameserver,
7272
this resolver instance uses multicast UDP messages to query all reachable hosts in your network.
7373

7474
#### Promises
@@ -96,7 +96,7 @@ Please refer to the [DNS documentation](https://github.com/reactphp/dns#readme)
9696
As stated above, this library provides you a powerful, async API by default.
9797

9898
If, however, you want to integrate this into your traditional, blocking environment,
99-
you should look into also using [clue/block-react](https://github.com/clue/php-block-react).
99+
you should look into also using [clue/reactphp-block](https://github.com/clue/reactphp-block).
100100

101101
The resulting blocking code could look something like this:
102102

@@ -128,7 +128,7 @@ $promises = array(
128128
$ips = Block\awaitAll($promises, $loop);
129129
```
130130

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

133133
## Install
134134

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"name": "clue/mdns-react",
3-
"description": "Multicast DNS (mDNS) resolver for zeroconf networking ala Bonjour/Avahi",
3+
"description": "Simple, async multicast DNS (mDNS) resolver for zeroconf networking, built on top of ReactPHP.",
44
"keywords": ["Multicast DNS", "mDNS", "RFC 6762", "zeroconf", "Bonjour", "Avahi", "ReactPHP", "async"],
5-
"homepage": "https://github.com/clue/php-mdns-react",
5+
"homepage": "https://github.com/clue/reactphp-mdns",
66
"license": "MIT",
77
"authors": [
88
{

0 commit comments

Comments
 (0)