narno/gandi-api

This package is abandoned and no longer maintained. The author suggests using the aperturelab/gandi-api package instead.

Simple PHP library for the Gandi API.

Maintainers

👁 aligny

Package info

github.com/ApertureLab/Gandi-API

Homepage

pkg:composer/narno/gandi-api

Statistics

Installs: 22 533

Dependents: 0

Suggesters: 0

Stars: 16

Open Issues: 0

1.2.0 2016-08-21 23:14 UTC

Requires

Requires (Dev)

None

Suggests

None

Provides

None

Conflicts

None

Replaces

MIT ba04e2ec8b7cdeb7e05af758a42d8067e929d2fe

apizf2Gandi

This package is auto-updated.

Last update: 2026-05-23 00:58:44 UTC


README

A simple PHP library for the Gandi API.

👁 Latest Stable Version
👁 Total Downloads
👁 License

Dependencies

Installation

The recommended way is through Composer.

composer require aperturelab/gandi-api

Usage

<?php
use ApertureLab\Gandi\Api as GandiApi;

try {
 $api = new GandiApi();
 // set API key
 $params = ['your_api_key'];
 // fetches account informations...
 $account = $api->account->info($params);
 // and print
 print_r($account);
} catch (\Exception $e) {
 echo $e->getMessage();
}

License

Free software distributed under the terms of the MIT license.

© Arnaud Ligny