There is no license information available for the latest version (dev-master) of this package.

dev-master 2023-06-24 06:51 UTC

This package is auto-updated.

Last update: 2024-04-24 08:28:43 UTC


README

This project is a Laravel package that provides a simple way to get DNS records for a domain.

Installation

Clone this repository and install the dependencies:

git clone https://github.com/your-repo/laravel-dns.git
cd laravel-dns
composer install

Usage

use App\Domain\Dns;

$dns = new Dns();
$records = $dns->getRecords('example.com');

Running Tests

vendor/bin/phpunit tests/Domain/DnsTest.php