projectstage / godaddy-api-wrapper
Simple GoDaddy API wrapper.
This package's canonical repository appears to be gone and the package has been frozen as a result.
Installs: 1 540
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 1
Open Issues: 2
Requires
- php: >=7.0
- guzzlehttp/guzzle: ^6.3
- phpunit/php-code-coverage: *
- phpunit/phpunit: *
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
Test Report
You'll find the PHPUnit test reports here
License
The MIT License (MIT). Please see License File for more information.