├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── examples └── query.php ├── phpunit.xml.dist ├── src └── React │ └── Whois │ ├── Client.php │ └── ConnectionFactory.php └── tests ├── React └── Whois │ ├── ClientTest.php │ ├── Stub │ ├── CallableStub.php │ └── ConnectionStub.php │ └── TestCase.php └── bootstrap.php /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactphp-legacy/whois/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactphp-legacy/whois/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactphp-legacy/whois/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactphp-legacy/whois/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactphp-legacy/whois/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactphp-legacy/whois/HEAD/composer.lock -------------------------------------------------------------------------------- /examples/query.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactphp-legacy/whois/HEAD/examples/query.php -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactphp-legacy/whois/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /src/React/Whois/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactphp-legacy/whois/HEAD/src/React/Whois/Client.php -------------------------------------------------------------------------------- /src/React/Whois/ConnectionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactphp-legacy/whois/HEAD/src/React/Whois/ConnectionFactory.php -------------------------------------------------------------------------------- /tests/React/Whois/ClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactphp-legacy/whois/HEAD/tests/React/Whois/ClientTest.php -------------------------------------------------------------------------------- /tests/React/Whois/Stub/CallableStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactphp-legacy/whois/HEAD/tests/React/Whois/Stub/CallableStub.php -------------------------------------------------------------------------------- /tests/React/Whois/Stub/ConnectionStub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactphp-legacy/whois/HEAD/tests/React/Whois/Stub/ConnectionStub.php -------------------------------------------------------------------------------- /tests/React/Whois/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactphp-legacy/whois/HEAD/tests/React/Whois/TestCase.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reactphp-legacy/whois/HEAD/tests/bootstrap.php --------------------------------------------------------------------------------