You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SSDP is part of Universal Plug and Play (UPnP)
and is commonly used to discover network services on home networks without
requiring any manual configuration, such as automatically discovering printers,
multimedia devices and network routers.
This library implements SSDP as defined in the
UPnP device architecture definition (PDF)
and uses HTTP over Multicast UDP (HTTPMU) as defined in the
IETF draft.
As an alternative, some devices use DNS-Based Service Discovery (DNS-SD) instead
as defined in RFC 6763.
This project aims to run on any platform and thus does not require any PHP
extensions and supports running on legacy PHP 5.3 through current PHP 8+ and
HHVM.
It's highly recommended to use the latest supported PHP version for this project.
Tests
To run the test suite, you first need to clone this repo and then install all
dependencies through Composer:
composer install
To run the test suite, go to the project root and run:
vendor/bin/phpunit
License
MIT
About
Async Simple Service Discovery Protocol (SSDP), built on top of ReactPHP.