├── ASF-LICENSE-2.0 ├── LICENSE ├── composer.json └── src ├── CannotProcessHost.php ├── Domain.php ├── DomainName.php ├── DomainNameProvider.php ├── DomainNameResolver.php ├── EffectiveTopLevelDomain.php ├── Host.php ├── Idna.php ├── IdnaInfo.php ├── PublicSuffixList.php ├── RegisteredName.php ├── ResolvedDomain.php ├── ResolvedDomainName.php ├── ResourceUri.php ├── Rules.php ├── Storage ├── PsrStorageFactory.php ├── PublicSuffixListCache.php ├── PublicSuffixListClient.php ├── PublicSuffixListPsr16Cache.php ├── PublicSuffixListPsr18Client.php ├── PublicSuffixListStorage.php ├── PublicSuffixListStorageFactory.php ├── RulesStorage.php ├── TimeToLive.php ├── TopLevelDomainListCache.php ├── TopLevelDomainListClient.php ├── TopLevelDomainListPsr16Cache.php ├── TopLevelDomainListPsr18Client.php ├── TopLevelDomainListStorage.php ├── TopLevelDomainListStorageFactory.php └── TopLevelDomainsStorage.php ├── Stream.php ├── Suffix.php ├── SyntaxError.php ├── TopLevelDomainList.php ├── TopLevelDomains.php ├── UnableToLoadPublicSuffixList.php ├── UnableToLoadResource.php ├── UnableToLoadTopLevelDomainList.php └── UnableToResolveDomain.php /ASF-LICENSE-2.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/ASF-LICENSE-2.0 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/composer.json -------------------------------------------------------------------------------- /src/CannotProcessHost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/CannotProcessHost.php -------------------------------------------------------------------------------- /src/Domain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/Domain.php -------------------------------------------------------------------------------- /src/DomainName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/DomainName.php -------------------------------------------------------------------------------- /src/DomainNameProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/DomainNameProvider.php -------------------------------------------------------------------------------- /src/DomainNameResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/DomainNameResolver.php -------------------------------------------------------------------------------- /src/EffectiveTopLevelDomain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/EffectiveTopLevelDomain.php -------------------------------------------------------------------------------- /src/Host.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/Host.php -------------------------------------------------------------------------------- /src/Idna.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/Idna.php -------------------------------------------------------------------------------- /src/IdnaInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/IdnaInfo.php -------------------------------------------------------------------------------- /src/PublicSuffixList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/PublicSuffixList.php -------------------------------------------------------------------------------- /src/RegisteredName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/RegisteredName.php -------------------------------------------------------------------------------- /src/ResolvedDomain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/ResolvedDomain.php -------------------------------------------------------------------------------- /src/ResolvedDomainName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/ResolvedDomainName.php -------------------------------------------------------------------------------- /src/ResourceUri.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/ResourceUri.php -------------------------------------------------------------------------------- /src/Rules.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/Rules.php -------------------------------------------------------------------------------- /src/Storage/PsrStorageFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/Storage/PsrStorageFactory.php -------------------------------------------------------------------------------- /src/Storage/PublicSuffixListCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/Storage/PublicSuffixListCache.php -------------------------------------------------------------------------------- /src/Storage/PublicSuffixListClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/Storage/PublicSuffixListClient.php -------------------------------------------------------------------------------- /src/Storage/PublicSuffixListPsr16Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/Storage/PublicSuffixListPsr16Cache.php -------------------------------------------------------------------------------- /src/Storage/PublicSuffixListPsr18Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/Storage/PublicSuffixListPsr18Client.php -------------------------------------------------------------------------------- /src/Storage/PublicSuffixListStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/Storage/PublicSuffixListStorage.php -------------------------------------------------------------------------------- /src/Storage/PublicSuffixListStorageFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/Storage/PublicSuffixListStorageFactory.php -------------------------------------------------------------------------------- /src/Storage/RulesStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/Storage/RulesStorage.php -------------------------------------------------------------------------------- /src/Storage/TimeToLive.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/Storage/TimeToLive.php -------------------------------------------------------------------------------- /src/Storage/TopLevelDomainListCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/Storage/TopLevelDomainListCache.php -------------------------------------------------------------------------------- /src/Storage/TopLevelDomainListClient.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/Storage/TopLevelDomainListClient.php -------------------------------------------------------------------------------- /src/Storage/TopLevelDomainListPsr16Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/Storage/TopLevelDomainListPsr16Cache.php -------------------------------------------------------------------------------- /src/Storage/TopLevelDomainListPsr18Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/Storage/TopLevelDomainListPsr18Client.php -------------------------------------------------------------------------------- /src/Storage/TopLevelDomainListStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/Storage/TopLevelDomainListStorage.php -------------------------------------------------------------------------------- /src/Storage/TopLevelDomainListStorageFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/Storage/TopLevelDomainListStorageFactory.php -------------------------------------------------------------------------------- /src/Storage/TopLevelDomainsStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/Storage/TopLevelDomainsStorage.php -------------------------------------------------------------------------------- /src/Stream.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/Stream.php -------------------------------------------------------------------------------- /src/Suffix.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/Suffix.php -------------------------------------------------------------------------------- /src/SyntaxError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/SyntaxError.php -------------------------------------------------------------------------------- /src/TopLevelDomainList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/TopLevelDomainList.php -------------------------------------------------------------------------------- /src/TopLevelDomains.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/TopLevelDomains.php -------------------------------------------------------------------------------- /src/UnableToLoadPublicSuffixList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/UnableToLoadPublicSuffixList.php -------------------------------------------------------------------------------- /src/UnableToLoadResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/UnableToLoadResource.php -------------------------------------------------------------------------------- /src/UnableToLoadTopLevelDomainList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/UnableToLoadTopLevelDomainList.php -------------------------------------------------------------------------------- /src/UnableToResolveDomain.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremykendall/php-domain-parser/HEAD/src/UnableToResolveDomain.php --------------------------------------------------------------------------------