Download the PHP package phppackage/domain-check without Composer
On this page you can find all versions of the php package phppackage/domain-check. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download phppackage/domain-check
More information about phppackage/domain-check
Files in phppackage/domain-check
Download phppackage/domain-check
More information about phppackage/domain-check
Files in phppackage/domain-check
Vendor phppackage
Package domain-check
Short Description Domain availability checker.
License MIT
Homepage http://github.com/phppackage/domain-check
Package domain-check
Short Description Domain availability checker.
License MIT
Homepage http://github.com/phppackage/domain-check
Please rate this library. Is it a good library?
Informations about the package domain-check
Domain Checker
WIP: Domain availability checker.
Install
Require this package with composer using the following command:
Usage example:
<?php
require 'vendor/autoload.php';
use \PHPPackage\DomainCheck\Checker;
// domain name (without tlds)
$name = 'mynewdomainnamexyz';
// define tlds
$tlds = [
'com',
'net'
];
// init checker class
$checker = new Checker($tlds);
/**
* Lookup all tlds for a given name, e.g domain.com, domain.net ...
* @return array
*/
$result = $checker->availability('domain');
Array
(
[mynewdomainnamexyz] => Array
(
[com] => 1
[net] => 1
)
)
Testing
Contributing
Please see CONTRIBUTING for details.
Credits
- Lawrence Cherone
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
All versions of domain-check with dependencies
PHP Build Version
Package Version
Requires
php Version
~7.0
The package phppackage/domain-check contains the following files
Loading the files please wait ....