luno / luno-php
PHP SDK for the Luno API
Installs: 1 748
Dependents: 0
Suggesters: 0
Security: 0
Stars: 11
Watchers: 4
Forks: 25
Open Issues: 4
Requires
- guzzlehttp/guzzle: ^6.3.3
- netresearch/jsonmapper: ^1.4
Requires (Dev)
- phpunit/phpunit: 7.1.4
This package is not auto-updated.
Last update: 2024-10-28 16:37:46 UTC
README
Luno API
This PHP package provides a wrapper for the Luno API.
Installation
composer require "luno/luno-php"
Authentication
Please visit the Settings page to generate an API key.
Example usage
$client = new Luno\Client(); $client->setAuth("api_key_id", "api_key_secret"); $req = new Luno\Request\GetOrderBook(); $req->setPair("XBTZAR"); try { $res = $client->getOrderBook($req); echo "Found " . count($res->getBids()) . " bid(s)"; } catch (Luno\Error $e) { echo $e->message(); }