fabricekabongo/godaddy-domain-api

2.0.0 2021-04-29 04:15 UTC

This package is auto-updated.

Last update: 2024-03-29 04:39:36 UTC


README

This is a fork of : https://github.com/slacker775/godaddy-domain-api

GoDaddy Domain API client

This is a library to access GoDaddy's domain registration/management API via PHP. This library uses the published Swagger file to auto-generate the client using the Jane libraries from https://github.com/janephp/janephp

use GoDaddy\Domain\ClientFactory;

$apiKey = 'ABCD';
$apiSecret = '1234';

$client = ClientFactory::create($apiKey, $apiSecret);

$domains = $client->listDomains();
dump($domains);