Skip to content

Commit d06a4db

Browse files
committed
Improve documentation and examples
1 parent be08f1f commit d06a4db

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# clue/reactphp-ssdp
22

3-
[![CI status](https://github.com/clue/reactphp-ssdp/workflows/CI/badge.svg)](https://github.com/clue/reactphp-ssdp/actions)
3+
[![CI status](https://github.com/clue/reactphp-ssdp/actions/workflows/ci.yml/badge.svg)](https://github.com/clue/reactphp-ssdp/actions)
44
[![installs on Packagist](https://img.shields.io/packagist/dt/clue/ssdp-react?color=blue&label=installs%20on%20Packagist)](https://packagist.org/packages/clue/ssdp-react)
55

6-
Async [Simple Service Discovery Protocol (SSDP)](http://en.wikipedia.org/wiki/Simple_Service_Discovery_Protocol), built on top of [ReactPHP](https://reactphp.org/).
6+
Async [Simple Service Discovery Protocol (SSDP)](https://en.wikipedia.org/wiki/Simple_Service_Discovery_Protocol), built on top of [ReactPHP](https://reactphp.org/).
77

8-
SSDP is part of [Universal Plug and Play (UPnP)](http://de.wikipedia.org/wiki/Universal_Plug_and_Play)
8+
SSDP is part of [Universal Plug and Play (UPnP)](https://de.wikipedia.org/wiki/Universal_Plug_and_Play)
99
and is commonly used to discover network services on home networks without
1010
requiring any manual configuration, such as automatically discovering printers,
1111
multimedia devices and network routers.
@@ -15,7 +15,7 @@ This library implements SSDP as defined in the
1515
and uses HTTP over Multicast UDP (HTTPMU) as defined in the
1616
[IETF draft](https://tools.ietf.org/html/draft-goland-http-udp-01).
1717
As an alternative, some devices use DNS-Based Service Discovery (DNS-SD) instead
18-
as defined in [RFC 6763](http://tools.ietf.org/html/rfc6763).
18+
as defined in [RFC 6763](https://tools.ietf.org/html/rfc6763).
1919

2020
**Table of Contents**
2121

@@ -48,11 +48,11 @@ $client->search()->then(
4848
);
4949
```
5050

51-
See also the [examples](examples).
51+
See also the [examples](examples/).
5252

5353
## Install
5454

55-
The recommended way to install this library is [through composer](http://getcomposer.org). [New to composer?](http://getcomposer.org/doc/00-intro.md)
55+
The recommended way to install this library is [through composer](https://getcomposer.org/). [New to composer?](https://getcomposer.org/doc/00-intro.md)
5656

5757
```JSON
5858
{
@@ -65,21 +65,21 @@ The recommended way to install this library is [through composer](http://getcomp
6565
This project aims to run on any platform and thus does not require any PHP
6666
extensions and supports running on legacy PHP 5.3 through current PHP 8+ and
6767
HHVM.
68-
It's *highly recommended to use PHP 7+* for this project.
68+
It's *highly recommended to use the latest supported PHP version* for this project.
6969

7070
## Tests
7171

7272
To run the test suite, you first need to clone this repo and then install all
73-
dependencies [through Composer](https://getcomposer.org):
73+
dependencies [through Composer](https://getcomposer.org/):
7474

7575
```bash
76-
$ composer install
76+
composer install
7777
```
7878

7979
To run the test suite, go to the project root and run:
8080

8181
```bash
82-
$ php vendor/bin/phpunit
82+
vendor/bin/phpunit
8383
```
8484

8585
## License

0 commit comments

Comments
 (0)