gemorroj / phpwhois-lite
PHPWhois-lite
dev-master
2025-04-03 13:46 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-03 13:46:44 UTC
README
TODO:
- add more tests after reworked
- https://github.com/weppos/whois (research codebase, use server list). attention on IP codebase (make own list of ip<->server)
- https://habr.com/ru/articles/165869/
Features:
- WHOIS/RDAP info for domains, IPv4/IPv6, CIDR, AS
- Support national domains (президент.рф for example)
- Follow to registrar WHOIS/RDAP servers (whois.crsnic.net -> whois.nic.ru for example)
- Force custom WHOIS/RDAP server
Requirements:
- PHP >= 8.2
- ext-curl
Installation:
composer require gemorroj/phpwhois-lite
Example:
<?php use PHPWhoisLite\Whois; use PHPWhoisLite\NetworkClient; use PHPWhoisLite\Resource\Server; use PHPWhoisLite\Resource\ServerTypeEnum; use Psr\Log\NullLogger; use Symfony\Component\Cache\Adapter\FilesystemAdapter; $logger = new NullLogger(); $cache = new FilesystemAdapter('phpwhois-lite', 60); // install symfony/cache $networkClient = new NetworkClient(cache: $cache, logger: $logger); $whois = new Whois($networkClient); // $data = $whois->process('ru'); // $data = $whois->process('127.0.0.1'); // $data = $whois->process('192.168.0.0/24'); // CIDR // $data = $whois->process('2001:0db8:85a3:0000:0000:8a2e:0370:7334'); // $data = $whois->process('AS220'); // $data = $whois->process('sirus.su', WhoisServer('whois.tcinet.ru', ServerTypeEnum::WHOIS)); // custom WHOIS server // $data = $whois->process('sirus.su', WhoisServer('https://www.nic.ru/rdap', ServerTypeEnum::RDAP)); // custom RDAP 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 ) ) */