slacker775 / godaddy-domain-api
1.0.2
2020-06-15 18:18 UTC
Requires
- php: >=7.4
- 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: 2024-11-16 04:12:39 UTC
README
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);