├── .gitattributes ├── .gitignore ├── .phpcs.xml.dist ├── .scrutinizer.yml ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── VERSION ├── composer.json ├── docs ├── FAQ.md ├── HANDLERS.md ├── ROADMAP.md └── UPGRADE.md ├── example ├── example.cli.php ├── example.php └── whois.icon.png ├── handler.template.php ├── output.txt ├── phpunit.xml.dist ├── poc.php ├── src ├── Cli │ └── CliHelper.php ├── Handlers │ ├── AbstractHandler.php │ ├── AeHandler.php │ ├── AeroHandler.php │ ├── AgHandler.php │ ├── AmHandler.php │ ├── AppHandler.php │ ├── AsiaHandler.php │ ├── AtHandler.php │ ├── AuHandler.php │ ├── BeHandler.php │ ├── BhHandler.php │ ├── BizHandler.php │ ├── BrHandler.php │ ├── ClHandler.php │ ├── DeHandler.php │ ├── EduHandler.php │ ├── HandlerInterface.php │ ├── KiwiHandler.php │ └── UkHandler.php ├── IpTools.php ├── Utils.php ├── Whois.php ├── WhoisClient.php ├── npdata.ser ├── whois.ca.php ├── whois.cat.php ├── whois.ch.php ├── whois.cn.php ├── whois.co.php ├── whois.co.za.php ├── whois.coop.php ├── whois.cz.php ├── whois.dev.php ├── whois.dk.php ├── whois.eu.php ├── whois.fi.php ├── whois.fj.php ├── whois.fm.php ├── whois.fr.php ├── whois.gtld.afternic.php ├── whois.gtld.alldomains.php ├── whois.gtld.ascio.php ├── whois.gtld.assorted.php ├── whois.gtld.corporatedomains.php ├── whois.gtld.directnic.php ├── whois.gtld.domaindiscover.php ├── whois.gtld.domainpeople.php ├── whois.gtld.dotster.php ├── whois.gtld.dreamhost.php ├── whois.gtld.enom.php ├── whois.gtld.fabulous.php ├── whois.gtld.fastdomain.php ├── whois.gtld.gandi.php ├── whois.gtld.genericb.php ├── whois.gtld.godaddy.php ├── whois.gtld.iana.php ├── whois.gtld.interdomain.php ├── whois.gtld.itsyourdomain.php ├── whois.gtld.joker.php ├── whois.gtld.markmonitor.php ├── whois.gtld.melbourneit.php ├── whois.gtld.moniker.php ├── whois.gtld.name.php ├── whois.gtld.nameintel.php ├── whois.gtld.namejuice.php ├── whois.gtld.nameking.php ├── whois.gtld.names4ever.php ├── whois.gtld.namevault.php ├── whois.gtld.networksolutions.php ├── whois.gtld.nicco.php ├── whois.gtld.nicline.php ├── whois.gtld.onlinenic.php ├── whois.gtld.opensrs.php ├── whois.gtld.ovh.php ├── whois.gtld.php ├── whois.gtld.psiusa.php ├── whois.gtld.publicdomainregistry.php ├── whois.gtld.register.php ├── whois.gtld.rrpproxy.php ├── whois.gtld.schlund.php ├── whois.gtld.srsplus.php ├── whois.gtld.tmagnic.php ├── whois.gtld.tvcorp.php ├── whois.gtld.wildwestdomains.php ├── whois.hu.php ├── whois.ie.php ├── whois.il.php ├── whois.in.php ├── whois.info.php ├── whois.int.php ├── whois.ip.afrinic.php ├── whois.ip.apnic.php ├── whois.ip.arin.php ├── whois.ip.krnic.php ├── whois.ip.lacnic.php ├── whois.ip.php ├── whois.ip.ripe.php ├── whois.ir.php ├── whois.is.php ├── whois.it.php ├── whois.jp.php ├── whois.london.php ├── whois.lt.php ├── whois.lu.php ├── whois.ly.php ├── whois.me.php ├── whois.mobi.php ├── whois.museum.php ├── whois.mx.php ├── whois.name.php ├── whois.nl.php ├── whois.no.php ├── whois.nu.php ├── whois.nz.php ├── whois.org.php ├── whois.org.za.php ├── whois.parser.php ├── whois.ph.php ├── whois.pl.php ├── whois.pro.php ├── whois.pt.php ├── whois.ro.php ├── whois.ru.php ├── whois.rwhois.php ├── whois.sc.php ├── whois.se.php ├── whois.servers.php ├── whois.si.php ├── whois.su.php ├── whois.tel.php ├── whois.today.php ├── whois.travel.php ├── whois.us.php ├── whois.ve.php ├── whois.ws.php ├── whois.xxx.php └── whois.zanet.php ├── test.txt ├── tests ├── BaseTestCase.php ├── Handlers │ ├── AeHandlerTest.php │ ├── AeroHandlerTest.php │ ├── AfternicHandlerTest.php │ ├── AgHandlerTest.php │ ├── AmHandlerTest.php │ ├── AppHandlerTest.php │ ├── AsiaHandlerTest.php │ ├── AtHandlerTest.php │ ├── AuHandlerTest.php │ ├── BeHandlerTest.php │ ├── BhHandlerTest.php │ ├── BizHandlerTest.php │ ├── BrHandlerTest.php │ ├── CaHandlerTest.php │ ├── CatHandlerTest.php │ ├── ChHandlerTest.php │ ├── ClHandlerTest.php │ ├── CnHandlerTest.php │ ├── CoHandlerTest.php │ ├── CoZaHandlerTest.php │ ├── CoopHandlerTest.php │ ├── CzHandlerTest.php │ ├── DeHandlerTest.php │ ├── DevHandlerTest.php │ ├── DkHandlerTest.php │ ├── EduHandlerTest.php │ ├── EuHandlerTest.php │ ├── FiHandlerTest.php │ ├── FjHandlerTest.php │ ├── FmHandlerTest.php │ ├── FrHandlerTest.php │ ├── GtldHandlerTest.php │ ├── HandlerTest.php │ ├── HuHandlerTest.php │ ├── IeHandlerTest.php │ ├── IlHandlerTest.php │ ├── KiwiHandlerTest.php │ ├── LondonHandlerTest.php │ ├── NoHandlerTest.php │ ├── OrgHandlerTest.php │ ├── PhHandlerTest.php │ ├── RuHandlerTest.php │ ├── SeHandlerTest.php │ ├── TodayHandlerTest.php │ ├── UkHandlerTest.php │ ├── UsHandlerTest.php │ └── WsHandlerTest.php ├── IpToolsTest.php ├── ParserTest.php ├── WhoisClientTest.php ├── WhoisTest.php ├── bootstrap.php ├── fixtures │ ├── 4ever.de.txt │ ├── a2ba91bff88c6983f6af010c41236206df64001d.de.txt │ ├── aeda.ae.txt │ ├── berkeley.edu.txt │ ├── blaueskreuz.ch.txt │ ├── buydomains.com.txt │ ├── china.cn.txt │ ├── cira.ca.txt │ ├── cityescape.ph.txt │ ├── creart.ch.txt │ ├── create-fixture.bat │ ├── denic.de.txt │ ├── domainregistry.ie.txt │ ├── domains.london.txt │ ├── dominis.cat.txt │ ├── dot.fm.txt │ ├── dot.ph.txt │ ├── eurid.eu.txt │ ├── ficora.fi.txt │ ├── google.ae.txt │ ├── google.app.smitty.txt │ ├── google.app.txt │ ├── google.ca.txt │ ├── google.cat.txt │ ├── google.ch.txt │ ├── google.cl.txt │ ├── google.cn.txt │ ├── google.co.txt │ ├── google.co.uk.txt │ ├── google.co.za.txt │ ├── google.com.txt │ ├── google.coop.txt │ ├── google.cz.txt │ ├── google.de.txt │ ├── google.dk.txt │ ├── google.eu.txt │ ├── google.fi.txt │ ├── google.fm.txt │ ├── google.fr.txt │ ├── google.hu.txt │ ├── google.ie.txt │ ├── google.kiwi.txt │ ├── google.net.txt │ ├── google.no.txt │ ├── google.org.txt │ ├── google.ru.txt │ ├── google.se.txt │ ├── google.us.txt │ ├── google.ws.txt │ ├── hello.kiwi.txt │ ├── humblebundle.de.txt │ ├── isoc.am.txt │ ├── lemonade.fr.txt │ ├── modx.today.txt │ ├── neulevel.biz.txt │ ├── neustar.us.txt │ ├── nic.ae.txt │ ├── nic.aero.txt │ ├── nic.ag.txt │ ├── nic.asia.txt │ ├── nic.at.txt │ ├── nic.be.txt │ ├── nic.bh.txt │ ├── nic.co.txt │ ├── nic.coop.txt │ ├── nic.cz.txt │ ├── nic.fr.txt │ ├── nic.hu.txt │ ├── nic.london.txt │ ├── norid.no.txt │ ├── olsns.co.uk.txt │ ├── ostap.dev.txt │ ├── registro.br.txt │ ├── samoanic.ws.txt │ ├── scottishrecoveryconsortium.org.txt │ ├── sex.co.za.txt │ ├── smile.coop.txt │ ├── tapuz.co.il.txt │ ├── telstra.com.au.txt │ ├── usp.ac.fj.txt │ ├── vibrantdigitalfuture.uk.txt │ └── рег.рф.txt └── ip_handlerTest.php ├── testsuite.php ├── testsuite.txt └── update-fixtures.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/.gitignore -------------------------------------------------------------------------------- /.phpcs.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/.phpcs.xml.dist -------------------------------------------------------------------------------- /.scrutinizer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/.scrutinizer.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 5.0.0-dev -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/composer.json -------------------------------------------------------------------------------- /docs/FAQ.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/docs/FAQ.md -------------------------------------------------------------------------------- /docs/HANDLERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/docs/HANDLERS.md -------------------------------------------------------------------------------- /docs/ROADMAP.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/docs/ROADMAP.md -------------------------------------------------------------------------------- /docs/UPGRADE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/docs/UPGRADE.md -------------------------------------------------------------------------------- /example/example.cli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/example/example.cli.php -------------------------------------------------------------------------------- /example/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/example/example.php -------------------------------------------------------------------------------- /example/whois.icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/example/whois.icon.png -------------------------------------------------------------------------------- /handler.template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/handler.template.php -------------------------------------------------------------------------------- /output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/output.txt -------------------------------------------------------------------------------- /phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/phpunit.xml.dist -------------------------------------------------------------------------------- /poc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/poc.php -------------------------------------------------------------------------------- /src/Cli/CliHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/Cli/CliHelper.php -------------------------------------------------------------------------------- /src/Handlers/AbstractHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/Handlers/AbstractHandler.php -------------------------------------------------------------------------------- /src/Handlers/AeHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/Handlers/AeHandler.php -------------------------------------------------------------------------------- /src/Handlers/AeroHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/Handlers/AeroHandler.php -------------------------------------------------------------------------------- /src/Handlers/AgHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/Handlers/AgHandler.php -------------------------------------------------------------------------------- /src/Handlers/AmHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/Handlers/AmHandler.php -------------------------------------------------------------------------------- /src/Handlers/AppHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/Handlers/AppHandler.php -------------------------------------------------------------------------------- /src/Handlers/AsiaHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/Handlers/AsiaHandler.php -------------------------------------------------------------------------------- /src/Handlers/AtHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/Handlers/AtHandler.php -------------------------------------------------------------------------------- /src/Handlers/AuHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/Handlers/AuHandler.php -------------------------------------------------------------------------------- /src/Handlers/BeHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/Handlers/BeHandler.php -------------------------------------------------------------------------------- /src/Handlers/BhHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/Handlers/BhHandler.php -------------------------------------------------------------------------------- /src/Handlers/BizHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/Handlers/BizHandler.php -------------------------------------------------------------------------------- /src/Handlers/BrHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/Handlers/BrHandler.php -------------------------------------------------------------------------------- /src/Handlers/ClHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/Handlers/ClHandler.php -------------------------------------------------------------------------------- /src/Handlers/DeHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/Handlers/DeHandler.php -------------------------------------------------------------------------------- /src/Handlers/EduHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/Handlers/EduHandler.php -------------------------------------------------------------------------------- /src/Handlers/HandlerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/Handlers/HandlerInterface.php -------------------------------------------------------------------------------- /src/Handlers/KiwiHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/Handlers/KiwiHandler.php -------------------------------------------------------------------------------- /src/Handlers/UkHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/Handlers/UkHandler.php -------------------------------------------------------------------------------- /src/IpTools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/IpTools.php -------------------------------------------------------------------------------- /src/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/Utils.php -------------------------------------------------------------------------------- /src/Whois.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/Whois.php -------------------------------------------------------------------------------- /src/WhoisClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/WhoisClient.php -------------------------------------------------------------------------------- /src/npdata.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/npdata.ser -------------------------------------------------------------------------------- /src/whois.ca.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.ca.php -------------------------------------------------------------------------------- /src/whois.cat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.cat.php -------------------------------------------------------------------------------- /src/whois.ch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.ch.php -------------------------------------------------------------------------------- /src/whois.cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.cn.php -------------------------------------------------------------------------------- /src/whois.co.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.co.php -------------------------------------------------------------------------------- /src/whois.co.za.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.co.za.php -------------------------------------------------------------------------------- /src/whois.coop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.coop.php -------------------------------------------------------------------------------- /src/whois.cz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.cz.php -------------------------------------------------------------------------------- /src/whois.dev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.dev.php -------------------------------------------------------------------------------- /src/whois.dk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.dk.php -------------------------------------------------------------------------------- /src/whois.eu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.eu.php -------------------------------------------------------------------------------- /src/whois.fi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.fi.php -------------------------------------------------------------------------------- /src/whois.fj.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.fj.php -------------------------------------------------------------------------------- /src/whois.fm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.fm.php -------------------------------------------------------------------------------- /src/whois.fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.fr.php -------------------------------------------------------------------------------- /src/whois.gtld.afternic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.afternic.php -------------------------------------------------------------------------------- /src/whois.gtld.alldomains.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.alldomains.php -------------------------------------------------------------------------------- /src/whois.gtld.ascio.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.ascio.php -------------------------------------------------------------------------------- /src/whois.gtld.assorted.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.assorted.php -------------------------------------------------------------------------------- /src/whois.gtld.corporatedomains.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.corporatedomains.php -------------------------------------------------------------------------------- /src/whois.gtld.directnic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.directnic.php -------------------------------------------------------------------------------- /src/whois.gtld.domaindiscover.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.domaindiscover.php -------------------------------------------------------------------------------- /src/whois.gtld.domainpeople.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.domainpeople.php -------------------------------------------------------------------------------- /src/whois.gtld.dotster.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.dotster.php -------------------------------------------------------------------------------- /src/whois.gtld.dreamhost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.dreamhost.php -------------------------------------------------------------------------------- /src/whois.gtld.enom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.enom.php -------------------------------------------------------------------------------- /src/whois.gtld.fabulous.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.fabulous.php -------------------------------------------------------------------------------- /src/whois.gtld.fastdomain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.fastdomain.php -------------------------------------------------------------------------------- /src/whois.gtld.gandi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.gandi.php -------------------------------------------------------------------------------- /src/whois.gtld.genericb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.genericb.php -------------------------------------------------------------------------------- /src/whois.gtld.godaddy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.godaddy.php -------------------------------------------------------------------------------- /src/whois.gtld.iana.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.iana.php -------------------------------------------------------------------------------- /src/whois.gtld.interdomain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.interdomain.php -------------------------------------------------------------------------------- /src/whois.gtld.itsyourdomain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.itsyourdomain.php -------------------------------------------------------------------------------- /src/whois.gtld.joker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.joker.php -------------------------------------------------------------------------------- /src/whois.gtld.markmonitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.markmonitor.php -------------------------------------------------------------------------------- /src/whois.gtld.melbourneit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.melbourneit.php -------------------------------------------------------------------------------- /src/whois.gtld.moniker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.moniker.php -------------------------------------------------------------------------------- /src/whois.gtld.name.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.name.php -------------------------------------------------------------------------------- /src/whois.gtld.nameintel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.nameintel.php -------------------------------------------------------------------------------- /src/whois.gtld.namejuice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.namejuice.php -------------------------------------------------------------------------------- /src/whois.gtld.nameking.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.nameking.php -------------------------------------------------------------------------------- /src/whois.gtld.names4ever.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.names4ever.php -------------------------------------------------------------------------------- /src/whois.gtld.namevault.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.namevault.php -------------------------------------------------------------------------------- /src/whois.gtld.networksolutions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.networksolutions.php -------------------------------------------------------------------------------- /src/whois.gtld.nicco.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.nicco.php -------------------------------------------------------------------------------- /src/whois.gtld.nicline.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.nicline.php -------------------------------------------------------------------------------- /src/whois.gtld.onlinenic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.onlinenic.php -------------------------------------------------------------------------------- /src/whois.gtld.opensrs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.opensrs.php -------------------------------------------------------------------------------- /src/whois.gtld.ovh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.ovh.php -------------------------------------------------------------------------------- /src/whois.gtld.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.php -------------------------------------------------------------------------------- /src/whois.gtld.psiusa.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.psiusa.php -------------------------------------------------------------------------------- /src/whois.gtld.publicdomainregistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.publicdomainregistry.php -------------------------------------------------------------------------------- /src/whois.gtld.register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.register.php -------------------------------------------------------------------------------- /src/whois.gtld.rrpproxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.rrpproxy.php -------------------------------------------------------------------------------- /src/whois.gtld.schlund.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.schlund.php -------------------------------------------------------------------------------- /src/whois.gtld.srsplus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.srsplus.php -------------------------------------------------------------------------------- /src/whois.gtld.tmagnic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.tmagnic.php -------------------------------------------------------------------------------- /src/whois.gtld.tvcorp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.tvcorp.php -------------------------------------------------------------------------------- /src/whois.gtld.wildwestdomains.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.gtld.wildwestdomains.php -------------------------------------------------------------------------------- /src/whois.hu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.hu.php -------------------------------------------------------------------------------- /src/whois.ie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.ie.php -------------------------------------------------------------------------------- /src/whois.il.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.il.php -------------------------------------------------------------------------------- /src/whois.in.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.in.php -------------------------------------------------------------------------------- /src/whois.info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.info.php -------------------------------------------------------------------------------- /src/whois.int.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.int.php -------------------------------------------------------------------------------- /src/whois.ip.afrinic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.ip.afrinic.php -------------------------------------------------------------------------------- /src/whois.ip.apnic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.ip.apnic.php -------------------------------------------------------------------------------- /src/whois.ip.arin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.ip.arin.php -------------------------------------------------------------------------------- /src/whois.ip.krnic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.ip.krnic.php -------------------------------------------------------------------------------- /src/whois.ip.lacnic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.ip.lacnic.php -------------------------------------------------------------------------------- /src/whois.ip.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.ip.php -------------------------------------------------------------------------------- /src/whois.ip.ripe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.ip.ripe.php -------------------------------------------------------------------------------- /src/whois.ir.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.ir.php -------------------------------------------------------------------------------- /src/whois.is.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.is.php -------------------------------------------------------------------------------- /src/whois.it.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.it.php -------------------------------------------------------------------------------- /src/whois.jp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.jp.php -------------------------------------------------------------------------------- /src/whois.london.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.london.php -------------------------------------------------------------------------------- /src/whois.lt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.lt.php -------------------------------------------------------------------------------- /src/whois.lu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.lu.php -------------------------------------------------------------------------------- /src/whois.ly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.ly.php -------------------------------------------------------------------------------- /src/whois.me.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.me.php -------------------------------------------------------------------------------- /src/whois.mobi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.mobi.php -------------------------------------------------------------------------------- /src/whois.museum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.museum.php -------------------------------------------------------------------------------- /src/whois.mx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.mx.php -------------------------------------------------------------------------------- /src/whois.name.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.name.php -------------------------------------------------------------------------------- /src/whois.nl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.nl.php -------------------------------------------------------------------------------- /src/whois.no.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.no.php -------------------------------------------------------------------------------- /src/whois.nu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.nu.php -------------------------------------------------------------------------------- /src/whois.nz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.nz.php -------------------------------------------------------------------------------- /src/whois.org.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.org.php -------------------------------------------------------------------------------- /src/whois.org.za.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.org.za.php -------------------------------------------------------------------------------- /src/whois.parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.parser.php -------------------------------------------------------------------------------- /src/whois.ph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.ph.php -------------------------------------------------------------------------------- /src/whois.pl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.pl.php -------------------------------------------------------------------------------- /src/whois.pro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.pro.php -------------------------------------------------------------------------------- /src/whois.pt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.pt.php -------------------------------------------------------------------------------- /src/whois.ro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.ro.php -------------------------------------------------------------------------------- /src/whois.ru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.ru.php -------------------------------------------------------------------------------- /src/whois.rwhois.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.rwhois.php -------------------------------------------------------------------------------- /src/whois.sc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.sc.php -------------------------------------------------------------------------------- /src/whois.se.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.se.php -------------------------------------------------------------------------------- /src/whois.servers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.servers.php -------------------------------------------------------------------------------- /src/whois.si.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.si.php -------------------------------------------------------------------------------- /src/whois.su.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.su.php -------------------------------------------------------------------------------- /src/whois.tel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.tel.php -------------------------------------------------------------------------------- /src/whois.today.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.today.php -------------------------------------------------------------------------------- /src/whois.travel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.travel.php -------------------------------------------------------------------------------- /src/whois.us.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.us.php -------------------------------------------------------------------------------- /src/whois.ve.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.ve.php -------------------------------------------------------------------------------- /src/whois.ws.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.ws.php -------------------------------------------------------------------------------- /src/whois.xxx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.xxx.php -------------------------------------------------------------------------------- /src/whois.zanet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/src/whois.zanet.php -------------------------------------------------------------------------------- /test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/test.txt -------------------------------------------------------------------------------- /tests/BaseTestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/BaseTestCase.php -------------------------------------------------------------------------------- /tests/Handlers/AeHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/AeHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/AeroHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/AeroHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/AfternicHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/AfternicHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/AgHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/AgHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/AmHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/AmHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/AppHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/AppHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/AsiaHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/AsiaHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/AtHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/AtHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/AuHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/AuHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/BeHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/BeHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/BhHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/BhHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/BizHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/BizHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/BrHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/BrHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/CaHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/CaHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/CatHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/CatHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/ChHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/ChHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/ClHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/ClHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/CnHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/CnHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/CoHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/CoHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/CoZaHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/CoZaHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/CoopHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/CoopHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/CzHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/CzHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/DeHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/DeHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/DevHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/DevHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/DkHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/DkHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/EduHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/EduHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/EuHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/EuHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/FiHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/FiHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/FjHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/FjHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/FmHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/FmHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/FrHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/FrHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/GtldHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/GtldHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/HandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/HandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/HuHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/HuHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/IeHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/IeHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/IlHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/IlHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/KiwiHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/KiwiHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/LondonHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/LondonHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/NoHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/NoHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/OrgHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/OrgHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/PhHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/PhHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/RuHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/RuHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/SeHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/SeHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/TodayHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/TodayHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/UkHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/UkHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/UsHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/UsHandlerTest.php -------------------------------------------------------------------------------- /tests/Handlers/WsHandlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/Handlers/WsHandlerTest.php -------------------------------------------------------------------------------- /tests/IpToolsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/IpToolsTest.php -------------------------------------------------------------------------------- /tests/ParserTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/ParserTest.php -------------------------------------------------------------------------------- /tests/WhoisClientTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/WhoisClientTest.php -------------------------------------------------------------------------------- /tests/WhoisTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/WhoisTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/fixtures/4ever.de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/4ever.de.txt -------------------------------------------------------------------------------- /tests/fixtures/a2ba91bff88c6983f6af010c41236206df64001d.de.txt: -------------------------------------------------------------------------------- 1 | Domain: a2ba91bff88c6983f6af010c41236206df64001d.de 2 | Status: free -------------------------------------------------------------------------------- /tests/fixtures/aeda.ae.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/aeda.ae.txt -------------------------------------------------------------------------------- /tests/fixtures/berkeley.edu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/berkeley.edu.txt -------------------------------------------------------------------------------- /tests/fixtures/blaueskreuz.ch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/blaueskreuz.ch.txt -------------------------------------------------------------------------------- /tests/fixtures/buydomains.com.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/buydomains.com.txt -------------------------------------------------------------------------------- /tests/fixtures/china.cn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/china.cn.txt -------------------------------------------------------------------------------- /tests/fixtures/cira.ca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/cira.ca.txt -------------------------------------------------------------------------------- /tests/fixtures/cityescape.ph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/cityescape.ph.txt -------------------------------------------------------------------------------- /tests/fixtures/creart.ch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/creart.ch.txt -------------------------------------------------------------------------------- /tests/fixtures/create-fixture.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/create-fixture.bat -------------------------------------------------------------------------------- /tests/fixtures/denic.de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/denic.de.txt -------------------------------------------------------------------------------- /tests/fixtures/domainregistry.ie.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/domainregistry.ie.txt -------------------------------------------------------------------------------- /tests/fixtures/domains.london.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/domains.london.txt -------------------------------------------------------------------------------- /tests/fixtures/dominis.cat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/dominis.cat.txt -------------------------------------------------------------------------------- /tests/fixtures/dot.fm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/dot.fm.txt -------------------------------------------------------------------------------- /tests/fixtures/dot.ph.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/dot.ph.txt -------------------------------------------------------------------------------- /tests/fixtures/eurid.eu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/eurid.eu.txt -------------------------------------------------------------------------------- /tests/fixtures/ficora.fi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/ficora.fi.txt -------------------------------------------------------------------------------- /tests/fixtures/google.ae.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/google.ae.txt -------------------------------------------------------------------------------- /tests/fixtures/google.app.smitty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/google.app.smitty.txt -------------------------------------------------------------------------------- /tests/fixtures/google.app.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/google.app.txt -------------------------------------------------------------------------------- /tests/fixtures/google.ca.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/google.ca.txt -------------------------------------------------------------------------------- /tests/fixtures/google.cat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/google.cat.txt -------------------------------------------------------------------------------- /tests/fixtures/google.ch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/google.ch.txt -------------------------------------------------------------------------------- /tests/fixtures/google.cl.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/google.cl.txt -------------------------------------------------------------------------------- /tests/fixtures/google.cn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/google.cn.txt -------------------------------------------------------------------------------- /tests/fixtures/google.co.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/google.co.txt -------------------------------------------------------------------------------- /tests/fixtures/google.co.uk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/google.co.uk.txt -------------------------------------------------------------------------------- /tests/fixtures/google.co.za.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/google.co.za.txt -------------------------------------------------------------------------------- /tests/fixtures/google.com.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/google.com.txt -------------------------------------------------------------------------------- /tests/fixtures/google.coop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/google.coop.txt -------------------------------------------------------------------------------- /tests/fixtures/google.cz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/google.cz.txt -------------------------------------------------------------------------------- /tests/fixtures/google.de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/google.de.txt -------------------------------------------------------------------------------- /tests/fixtures/google.dk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/google.dk.txt -------------------------------------------------------------------------------- /tests/fixtures/google.eu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/google.eu.txt -------------------------------------------------------------------------------- /tests/fixtures/google.fi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/google.fi.txt -------------------------------------------------------------------------------- /tests/fixtures/google.fm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/google.fm.txt -------------------------------------------------------------------------------- /tests/fixtures/google.fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/google.fr.txt -------------------------------------------------------------------------------- /tests/fixtures/google.hu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/google.hu.txt -------------------------------------------------------------------------------- /tests/fixtures/google.ie.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/google.ie.txt -------------------------------------------------------------------------------- /tests/fixtures/google.kiwi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/google.kiwi.txt -------------------------------------------------------------------------------- /tests/fixtures/google.net.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/google.net.txt -------------------------------------------------------------------------------- /tests/fixtures/google.no.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/google.no.txt -------------------------------------------------------------------------------- /tests/fixtures/google.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/google.org.txt -------------------------------------------------------------------------------- /tests/fixtures/google.ru.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/google.ru.txt -------------------------------------------------------------------------------- /tests/fixtures/google.se.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/google.se.txt -------------------------------------------------------------------------------- /tests/fixtures/google.us.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/google.us.txt -------------------------------------------------------------------------------- /tests/fixtures/google.ws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/google.ws.txt -------------------------------------------------------------------------------- /tests/fixtures/hello.kiwi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/hello.kiwi.txt -------------------------------------------------------------------------------- /tests/fixtures/humblebundle.de.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/humblebundle.de.txt -------------------------------------------------------------------------------- /tests/fixtures/isoc.am.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/isoc.am.txt -------------------------------------------------------------------------------- /tests/fixtures/lemonade.fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/lemonade.fr.txt -------------------------------------------------------------------------------- /tests/fixtures/modx.today.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/modx.today.txt -------------------------------------------------------------------------------- /tests/fixtures/neulevel.biz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/neulevel.biz.txt -------------------------------------------------------------------------------- /tests/fixtures/neustar.us.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/neustar.us.txt -------------------------------------------------------------------------------- /tests/fixtures/nic.ae.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/nic.ae.txt -------------------------------------------------------------------------------- /tests/fixtures/nic.aero.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/nic.aero.txt -------------------------------------------------------------------------------- /tests/fixtures/nic.ag.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/nic.ag.txt -------------------------------------------------------------------------------- /tests/fixtures/nic.asia.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/nic.asia.txt -------------------------------------------------------------------------------- /tests/fixtures/nic.at.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/nic.at.txt -------------------------------------------------------------------------------- /tests/fixtures/nic.be.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/nic.be.txt -------------------------------------------------------------------------------- /tests/fixtures/nic.bh.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/nic.bh.txt -------------------------------------------------------------------------------- /tests/fixtures/nic.co.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/nic.co.txt -------------------------------------------------------------------------------- /tests/fixtures/nic.coop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/nic.coop.txt -------------------------------------------------------------------------------- /tests/fixtures/nic.cz.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/nic.cz.txt -------------------------------------------------------------------------------- /tests/fixtures/nic.fr.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/nic.fr.txt -------------------------------------------------------------------------------- /tests/fixtures/nic.hu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/nic.hu.txt -------------------------------------------------------------------------------- /tests/fixtures/nic.london.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/nic.london.txt -------------------------------------------------------------------------------- /tests/fixtures/norid.no.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/norid.no.txt -------------------------------------------------------------------------------- /tests/fixtures/olsns.co.uk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/olsns.co.uk.txt -------------------------------------------------------------------------------- /tests/fixtures/ostap.dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/ostap.dev.txt -------------------------------------------------------------------------------- /tests/fixtures/registro.br.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/registro.br.txt -------------------------------------------------------------------------------- /tests/fixtures/samoanic.ws.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/samoanic.ws.txt -------------------------------------------------------------------------------- /tests/fixtures/scottishrecoveryconsortium.org.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/scottishrecoveryconsortium.org.txt -------------------------------------------------------------------------------- /tests/fixtures/sex.co.za.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/sex.co.za.txt -------------------------------------------------------------------------------- /tests/fixtures/smile.coop.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/smile.coop.txt -------------------------------------------------------------------------------- /tests/fixtures/tapuz.co.il.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/tapuz.co.il.txt -------------------------------------------------------------------------------- /tests/fixtures/telstra.com.au.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/telstra.com.au.txt -------------------------------------------------------------------------------- /tests/fixtures/usp.ac.fj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/usp.ac.fj.txt -------------------------------------------------------------------------------- /tests/fixtures/vibrantdigitalfuture.uk.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/vibrantdigitalfuture.uk.txt -------------------------------------------------------------------------------- /tests/fixtures/рег.рф.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/fixtures/рег.рф.txt -------------------------------------------------------------------------------- /tests/ip_handlerTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/tests/ip_handlerTest.php -------------------------------------------------------------------------------- /testsuite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/testsuite.php -------------------------------------------------------------------------------- /testsuite.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/testsuite.txt -------------------------------------------------------------------------------- /update-fixtures.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsmitty12/phpWhois/HEAD/update-fixtures.php --------------------------------------------------------------------------------