gemorroj / phpwhois-lite
PHPWhois-lite
dev-master
2025-04-02 16:31 UTC
Requires
- php: >=8.2
- ext-curl: *
- ext-pcre: *
- algo26-matthias/idna-convert: ^4.2
- psr/cache: ^3.0.0
- psr/log: ^3.0.2
- symfony/polyfill-mbstring: ^1.31
- symfony/polyfill-php84: ^1.31
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.75.0
- phpstan/phpstan: ^2.1.11
- phpunit/phpunit: ^11.5.15
- symfony/cache: ^7.2.5
- symfony/console: ^7.2.5
Suggests
- php: >=8.4
- ext-mbstring: *
This package is auto-updated.
Last update: 2025-04-02 16:31:53 UTC
README
TODO:
- https://habr.com/ru/articles/165869/
- check the whois server list (parse https://www.iana.org/domains/root/db)
- https://github.com/weppos/whois (research codebase, use server list)
Features:
- WHOIS info for domains, IPv4/IPv6, AS
- Support national domains (президент.рф for example)
- Follow to registrar WHOIS servers (whois.crsnic.net -> whois.nic.ru for example)
- Force custom WHOIS server
Requirements:
- PHP >= 8.2
- ext-curl
Installation:
composer require gemorroj/phpwhois-lite
Example:
<?php use PHPWhoisLite\Whois; use PHPWhoisLite\WhoisClient; use Psr\Log\NullLogger; use Symfony\Component\Cache\Adapter\FilesystemAdapter; $logger = new NullLogger(); $cache = new FilesystemAdapter('phpwhois-lite', 60); // install symfony/cache $whoisClient = new WhoisClient(cache: $cache, logger: $logger); $whois = new Whois($whoisClient); // $data = $whois->process('127.0.0.1'); // $data = $whois->process('192.168.0.0/24'); // $data = $whois->process('2001:0db8:85a3:0000:0000:8a2e:0370:7334'); // $data = $whois->process('AS220'); // $data = $whois->process('sirus.su', 'whois.tcinet.ru'); // custom whois server $data = $whois->process('vk.com'); print_r($data); /* PHPWhoisLite\Data Object ( [raw] => Domain Name: VK.COM Registry Domain ID: 3206186_DOMAIN_COM-VRSN ... [server] => whois.nic.ru:43 [type] => PHPWhoisLite\QueryTypeEnum Enum:string ( [name] => DOMAIN [value] => domain ) ) */