oarkhipov / whois
Fetcher of WHOIS information.
0.2.0
2017-10-17 15:49 UTC
Requires
- php: >=7.1
- layershifter/tld-extract: ^1.2
- nesbot/carbon: ^1.22
Requires (Dev)
- phpunit/phpunit: 6.3
Suggests
- illuminate/support: Service provider for Laravel
This package is not auto-updated.
Last update: 2025-03-30 06:55:25 UTC
README
[IN DEVELOPMENT] This package provides functionality to fetch WHOIS information of a domain.
Installation
composer require oarkhipov/whois
Laravel
There is a service provider for Laravel.
Add this to your providers array in config/app.php
:
Oarkhipov\Whois\Laravel\WhoisServiceProvider::class,
Usage
Firstly, create Fetcher
class instance:
use Oarkhipov\Whois\Fetcher; $fetcher = new Fetcher();
With Laravel you are able to typehint it like that:
use Oarkhipov\Whois\Fetcher; class TestController extends Controller { private $whoisFetcher; public function __construct(Fetcher $fetcher) { $this->whoisFetcher = $fetcher; } }
or resolve from container by whois
name like that:
$fetcher = $this->app->make('whois');
Now to retrieve WHOIS record:
$whois = $fetcher->fetch('http://facebook.com');
Check wiki for a list of supported WHOIS record fields and tested top-level domains.