├── .github └── workflows │ └── main.yml ├── .gitignore ├── README.md ├── composer.json ├── composer.lock ├── phpunit.xml ├── src ├── AvailabilityDetector.php ├── Checker.php ├── Whois.php ├── WhoisHandler.php └── dist.whois.json └── tests ├── CheckerTest.php ├── IntegrationTest.php └── WhoisHandlerTest.php /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monovm/whois-php/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monovm/whois-php/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monovm/whois-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monovm/whois-php/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monovm/whois-php/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monovm/whois-php/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/AvailabilityDetector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monovm/whois-php/HEAD/src/AvailabilityDetector.php -------------------------------------------------------------------------------- /src/Checker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monovm/whois-php/HEAD/src/Checker.php -------------------------------------------------------------------------------- /src/Whois.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monovm/whois-php/HEAD/src/Whois.php -------------------------------------------------------------------------------- /src/WhoisHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monovm/whois-php/HEAD/src/WhoisHandler.php -------------------------------------------------------------------------------- /src/dist.whois.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monovm/whois-php/HEAD/src/dist.whois.json -------------------------------------------------------------------------------- /tests/CheckerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monovm/whois-php/HEAD/tests/CheckerTest.php -------------------------------------------------------------------------------- /tests/IntegrationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monovm/whois-php/HEAD/tests/IntegrationTest.php -------------------------------------------------------------------------------- /tests/WhoisHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monovm/whois-php/HEAD/tests/WhoisHandlerTest.php --------------------------------------------------------------------------------