domainvalidity/domainvalidity

Light PHP SDK to interact with the Doma(in)Validity API.

dev-master 2022-05-03 06:41 UTC

This package is auto-updated.

Last update: 2024-04-30 00:27:51 UTC


README

Light PHP SDK to interact with the Doma(in)Validity API.

Usage

<?php

require_once 'vendor/autoload.php';

use Domainvalidity\Sdk\Factory;

$host = Factory::make()->validate('https://api.example.com');

$host->isValid(); // true or false
$host->original(); // https://api.example.com
$host->host(); // 'api.example.com'
$host->domain(); // example.com
$host->tld(); // com