Rage4 DNS Objective Wrapping
, (*1)
This is a PHP5 wrapper to map Rage4 objects to domain objects and synchronize changes made., (*2)
Requirements
You need PHP 5.3.2+ compiled with the cURL extension., (*3)
Install Rage4 DNS Objective Wrapping
Installing via Composer
The recommended way to install OVH SDK is through Composer., (*4)
-
Add splitice/rage4-api-objective as a dependency in your project's composer.json file:, (*5)
{
"require": {
"splitice/rage4-api-objective": "dev-master"
}
}
-
Download and install Composer:, (*6)
curl -s http://getcomposer.org/installer | php
-
Install your dependencies:, (*7)
php composer.phar install
-
Require Composer's autoloader, (*8)
Composer also prepares an autoload file that's capable of autoloading all of the classes in any of the libraries that it downloads. To use it, just add the following line to your code's bootstrap process:, (*9)
require 'vendor/autoload.php';
You can find out more on how to install Composer, configure autoloading, and other best-practices for defining dependencies at getcomposer.org., (*10)
Examples
Here are some examples on how to do basic operations., (*11)
List all Domains
TODO, (*12)
Get domain by name
TODO, (*13)
Add / Update records
TODO, (*14)
More
See the unit tests for more usage examples, (*15)