Skip to content

ToBee94/cloudns-api-php

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

47 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ClouDNS API Library

This is a wrapper library for the ClouDNS API to be used by PHP applications. It tries to ease the integration of the API into your applications by handling all interactions with API and providing a simple interface to interact with.

Installation

Add this requirement to your composer.json file and run composer.phar install:

{
    "require": {
        "tvorwachs/cloudns-api-php": "*@dev-master"
    }
}

or

run composer require tvorwachs/cloudns-api-php

Getting Started

To begin using the Library, the cloudns.php must be included in your application.

use tvorwachs\ClouDNS;

An instance of the ClouDNS must be created to interact with the library. This Object is the gateway to all interactions with the library. The API password obtained from the ClouDNS must be passed into the ClouDNS by calling set_options.

$cloudns = new ClouDNS();
$cloudns->setOptions(array('authId' => '999','authPassword' => 'some_password', 'authType' => 'auth-id'));

Functions

View at tobee94.github.io

Reporting Issues/Contributing

If you find an issue with the library, please report the issue to us by using the repository's issue tracker and we will try to resolve the issue. If you resolve the issue or make other improvements feel free to create a pull request so we can merge it into a future release.

About

ClouDNS API - PHP SDK

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • PHP 100.0%