nocvp / zf3-whois
There is no license information available for the latest version (dev-master) of this package.
dev-master
2016-12-10 14:15 UTC
Requires
- php: ^5.6 || ^7.0
- phois/whois: dev-master
- zendframework/zend-modulemanager: ^2.7
- zendframework/zend-servicemanager-di: ^1.0
This package is not auto-updated.
Last update: 2025-02-01 22:08:37 UTC
README
This module uses the phois/whois
Installation
For the installation uses composer composer. Add this project in your composer.json:
"require": {
"nocvp/zf3-whois": "dev-master"
}
Examples
Default use of Zf3 Whois
$whoisService = $container->get('whois'); $whois = $whoisService->query('example.org'); echo $whois->info(); echo $whois->isAvailable() ? 'available' : 'not available'; or in your controller $whois = $this->whois('example.org'); echo $whois->info(); echo $whois->isAvailable() ? 'available' : 'not available';
Contributors
Semih SARI - semih.sari@noc.com.tr