From d06360aec0d2ad522a4c6f776dc8bc17d066cd7f Mon Sep 17 00:00:00 2001 From: ArrayIterator Date: Thu, 9 Nov 2023 09:39:03 +0700 Subject: [PATCH] update --- README.md | 14 ++++++++++++++ composer.json | 3 ++- src/DnsServer/CloudflareFamily.php | 4 ++++ 3 files changed, 20 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 9dde835..d090ee7 100644 --- a/README.md +++ b/README.md @@ -1 +1,15 @@ # PHP DNS Client - DNS Resolver + + +Native Php DNS Client / Resolver implementation of [RFC 1035](https://datatracker.ietf.org/doc/html/rfc1035). +Support [PSR-6: Caching Interface](https://www.php-fig.org/psr/psr-6/). + +## Requirements + +- Php 8.1 or later +- Network Connectivity (_Absolutely!_) + +## Note + +The [RRTypes](src/ResourceRecord/RRTypes) not completed yet, +will use [RRDefault](src/ResourceRecord/RRTypes/RRDefault.php) as default. diff --git a/composer.json b/composer.json index b11b18a..92faddc 100644 --- a/composer.json +++ b/composer.json @@ -6,7 +6,8 @@ "dns-resolver", "dns", "php-dns", - "nameserver" + "nameserver", + "RFC1035" ], "license": ["LGPL-3.0-or-later"], "require": { diff --git a/src/DnsServer/CloudflareFamily.php b/src/DnsServer/CloudflareFamily.php index 3d2147d..f14baa4 100644 --- a/src/DnsServer/CloudflareFamily.php +++ b/src/DnsServer/CloudflareFamily.php @@ -9,6 +9,10 @@ * @link https://developers.cloudflare.com/1.1.1.1/ip-addresses/#1111-for-families * For block adult content use: * + * 1.1.1.3 + * 1.0.0.3 + * + * For IPV6: * 2606:4700:4700::1113 * 2606:4700:4700::1003 */