vmartuniyk / dns
This library should allow us to get all DNS records for the specified domain name.
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/vmartuniyk/dns
Requires
- php: ^8.0
- illuminate/support: ^9.0
Requires (Dev)
- phpunit/phpunit: ^9.5
This package is not auto-updated.
Last update: 2025-10-12 02:52:05 UTC
README
This package contains a class that can fetch DNS records.
use Vmartuniyk\Dns\Dns; $dns = new Dns(); $dns->getAllDnsRecords('gmail.com');
Installation
You can install the package via composer:
composer require vmartuniyk/dns
Usage
use Vmartuniyk\Dns\Dns; $dns = new Dns(); $data = $dns->getAllDnsRecords('gmail.com'); // returns all available dns records print_r($data);
Testing
composer test
License
The MIT License (MIT). Please see License File for more information.