sclinternet/scl-whois

Library for performing whois lookups on domain names

Installs: 113

Dependents: 0

Suggesters: 0

Security: 0

Stars: 6

Watchers: 2

Forks: 2

Open Issues: 0

pkg:composer/sclinternet/scl-whois

dev-master 2013-06-02 20:38 UTC

This package is not auto-updated.

Last update: 2025-09-27 18:35:39 UTC


README

Build Status Coverage Status

Performs a whois lookup on a given domain name.

Requires

sclinternet/SclSocket

Intallation

Add the following to your composer.json file

{
    "require": {
        "sclinternet/scl-whois": "dev-master"
    }
}

Usage

Create an instance of the DomainLookup object passing in a SclSocket\SocketInterface and call lookup().

$whois = new \SclWhois\DomainLookup(new \SclSocket\Socket);

echo $whois->lookup('google.com');