Download the PHP package bigdevwhale/godaddy-api-wrapper without Composer

On this page you can find all versions of the php package bigdevwhale/godaddy-api-wrapper. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package godaddy-api-wrapper

GoDaddy API PHP Wrapper

A PHP wrapper for interacting with the GoDaddy API. This wrapper simplifies the process of making HTTP requests to the GoDaddy API, allowing you to manage your domains, accounts, and perform various domain-related tasks.

Getting Started

Before using this wrapper, you'll need to create an API Key and Secret by following the instructions provided in the GoDaddy API Documentation.

Installation

You can install this wrapper using Composer. If you don't have Composer installed, download it here.

  1. Create a new directory for your project and navigate to it in your terminal.

  2. Inside your project directory, run the following Composer command to install the GoDaddy API PHP Wrapper:

    
    composer require bigdevwhale/godaddy-api-wrapper
  3. After installation, you can use the wrapper by including the Composer autoloader in your PHP script:

    php // Include the Composer autoloader require 'vendor/autoload.php';

    // Initialize the GoDaddyAPI with your API Key and Secret for the test environment $apiKey = 'your-test-api-key'; $apiSecret = 'your-test-api-secret';

    // Set the isProduction flag to false to use the test environment $isProduction = false;

    // Create an instance of GoDaddyAPI for the test environment $goDaddyAPI = new \GoDaddyAPI\GoDaddyAPI($apiKey, $apiSecret, $isProduction);

    // Access various API endpoints using the provided methods $abuseRequest = $goDaddyAPI->abuse(); $aftermarketRequest = $goDaddyAPI->aftermarket(); $agreementsRequest = $goDaddyAPI->agreements(); $certificatesRequest = $goDaddyAPI->certificates(); $countriesRequest = $goDaddyAPI->countries(); $domainsRequest = $goDaddyAPI->domains(); $ordersRequest = $goDaddyAPI->orders(); $parkingRequest = $goDaddyAPI->parking(); $shoppersRequest = $goDaddyAPI->shoppers(); $subscriptionsRequest = $goDaddyAPI->subscriptions();

    // Use the API requests to perform specific actions // For example, list all abuse tickets try { $abuseTickets = $abuseRequest->getTickets(); // Process the $abuseTickets response print_r($abuseTickets); } catch (\GoDaddyAPI\Exceptions\GoDaddyAPIException $e) { echo 'Error: ' . $e->getMessage(); }

For detailed API reference and available endpoints, refer to the official GoDaddy API documentation.

Configuration

You can configure the base URL (production or test environment) in the GoDaddyApiClient constructor by setting the $isProduction parameter.

Contributing

We welcome contributions! Feel free to create issues, submit pull requests, or make improvements to this wrapper.

License

This GoDaddy API PHP wrapper is licensed under the MIT License - see the LICENSE file for details.


All versions of godaddy-api-wrapper with dependencies

PHP Build Version
Package Version
Requires guzzlehttp/guzzle Version ^7.0
php Version >=7.2
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package bigdevwhale/godaddy-api-wrapper contains the following files

Loading the files please wait ....