projectstage/godaddy-api-wrapper

Simple GoDaddy API wrapper.

1.0.3 2017-11-14 15:17 UTC

This package is not auto-updated.

Last update: 2022-05-19 07:28:34 UTC


README

Simple to use Guzzle based API wrapper to manage your GoDaddy domains

Requirements

  • If not done you need to create your GoDaddy account
  • Please read first more general details about how to use the GoDaddy API here
  • Once you have an account at GoDaddy you need to create your API key/secret pairs here
  • PHP version running on your system >= 7.1

Install

Via Composer

$ composer require projectstage/godaddy-api-wrapper

Get started

require_once __DIR__.'/vendor/autoload.php';

$GoDaddyClient = new \GoDaddy\GoDaddyClient('GODADDY_KEY', 'GODADDY_SECRET');

// assuming you want to handle things around your domains
// like e.g. DNS settings, purchasing Domains etc.
// see at https://developer.godaddy.com/doc#!/_v1_domains
$Domains = $GoDaddyClient->connectDomains();

// get a list of all your GoDaddy domains
$domain_list = $Domains->getDomains();

please find more details about the different API functionalities below

Domains

Test Report

You'll find the PHPUnit test reports here

License

The MIT License (MIT). Please see License File for more information.