https://github.com/mathsgod/webnic-client-php
https://github.com/mathsgod/webnic-client-php
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/mathsgod/webnic-client-php
- Owner: mathsgod
- License: mit
- Created: 2024-09-04T07:36:38.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-04T09:26:13.000Z (almost 2 years ago)
- Last Synced: 2026-02-03T10:21:24.326Z (4 months ago)
- Language: PHP
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WebNIC Client
[WebNIC](https://www.webnic.cc/) API Client for PHP
# install
```
composer require mathsgod/webnic-client-php
```
# usage
## Auth
```php
use WebNIC\Client;
$client = new Client('your-client-id', 'your-secret');
```
## DNS
### Check Whois
```php
print_r($client->domain()->whois('example.com'));
```