├── .coveralls.yml ├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── bin └── whois ├── box.json ├── composer.json ├── data └── tld.json ├── phpunit.xml.dist ├── sami.php ├── src ├── Availability │ ├── AvailabilityException.php │ └── Client.php ├── Connection │ ├── ConnectionException.php │ ├── ConnectionFactory.php │ ├── ConnectionInterface.php │ └── StreamConnection.php ├── Data │ ├── Data.php │ ├── DataException.php │ ├── DataLoadException.php │ └── DataLoader.php ├── Domain.php └── Whois │ ├── Client.php │ ├── QuotaExceededException.php │ └── WhoisException.php └── tests ├── Availability └── ClientTest.php ├── AvailabilityCheckTest.php ├── Connection ├── ConnectionFactoryTest.php └── StreamConnectionTest.php ├── Data ├── DataLoaderTest.php └── DataTest.php ├── DomainTest.php ├── Whois └── ClientTest.php └── fixtures ├── tld.json ├── whois_notreg.txt ├── whois_period.txt ├── whois_quota.txt └── whois_reg.txt /.coveralls.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/.coveralls.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/README.md -------------------------------------------------------------------------------- /bin/whois: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/bin/whois -------------------------------------------------------------------------------- /box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/box.json -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/composer.json -------------------------------------------------------------------------------- /data/tld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/data/tld.json -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /sami.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/sami.php -------------------------------------------------------------------------------- /src/Availability/AvailabilityException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/src/Availability/AvailabilityException.php -------------------------------------------------------------------------------- /src/Availability/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/src/Availability/Client.php -------------------------------------------------------------------------------- /src/Connection/ConnectionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/src/Connection/ConnectionException.php -------------------------------------------------------------------------------- /src/Connection/ConnectionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/src/Connection/ConnectionFactory.php -------------------------------------------------------------------------------- /src/Connection/ConnectionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/src/Connection/ConnectionInterface.php -------------------------------------------------------------------------------- /src/Connection/StreamConnection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/src/Connection/StreamConnection.php -------------------------------------------------------------------------------- /src/Data/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/src/Data/Data.php -------------------------------------------------------------------------------- /src/Data/DataException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/src/Data/DataException.php -------------------------------------------------------------------------------- /src/Data/DataLoadException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/src/Data/DataLoadException.php -------------------------------------------------------------------------------- /src/Data/DataLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/src/Data/DataLoader.php -------------------------------------------------------------------------------- /src/Domain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/src/Domain.php -------------------------------------------------------------------------------- /src/Whois/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/src/Whois/Client.php -------------------------------------------------------------------------------- /src/Whois/QuotaExceededException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/src/Whois/QuotaExceededException.php -------------------------------------------------------------------------------- /src/Whois/WhoisException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/src/Whois/WhoisException.php -------------------------------------------------------------------------------- /tests/Availability/ClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/tests/Availability/ClientTest.php -------------------------------------------------------------------------------- /tests/AvailabilityCheckTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/tests/AvailabilityCheckTest.php -------------------------------------------------------------------------------- /tests/Connection/ConnectionFactoryTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/tests/Connection/ConnectionFactoryTest.php -------------------------------------------------------------------------------- /tests/Connection/StreamConnectionTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/tests/Connection/StreamConnectionTest.php -------------------------------------------------------------------------------- /tests/Data/DataLoaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/tests/Data/DataLoaderTest.php -------------------------------------------------------------------------------- /tests/Data/DataTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/tests/Data/DataTest.php -------------------------------------------------------------------------------- /tests/DomainTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/tests/DomainTest.php -------------------------------------------------------------------------------- /tests/Whois/ClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/tests/Whois/ClientTest.php -------------------------------------------------------------------------------- /tests/fixtures/tld.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/tests/fixtures/tld.json -------------------------------------------------------------------------------- /tests/fixtures/whois_notreg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/tests/fixtures/whois_notreg.txt -------------------------------------------------------------------------------- /tests/fixtures/whois_period.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/tests/fixtures/whois_period.txt -------------------------------------------------------------------------------- /tests/fixtures/whois_quota.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/tests/fixtures/whois_quota.txt -------------------------------------------------------------------------------- /tests/fixtures/whois_reg.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cocur/domain/HEAD/tests/fixtures/whois_reg.txt --------------------------------------------------------------------------------