fabricekabongo / godaddy-domain-api
2.0.0
2021-04-29 04:15 UTC
Requires
- php: >=7.3
- jane-php/open-api-runtime: ^6.0
- symfony/translation-contracts: ^2.1
Requires (Dev)
- jane-php/open-api-3: ^6.0
- nyholm/psr7: ^1.3
- symfony/http-client: ^5.1
- symfony/var-dumper: ^5.1
This package is auto-updated.
Last update: 2025-03-01 00:34:57 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);