Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/alexeevdv/php-domain-info


https://github.com/alexeevdv/php-domain-info

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

Domain info provider
===
You can obtain following information about domain:

- Creation date
- Expiration date

Installation
--

Preferred way to install this library is via composer:

```bash
composer require alexeevdv/php-domain-info "1.0.0"
```

Usage:
--

```php
getCreationDate();
$expirationDate = $provider->getExpirationDate();
} catch (Exception $e) {
// Can't find data provider for domain name
}

```