2017 © Pedro Peláez
 

library cbix-php

PHP library for the Canadian Bitcoin Index API

image

cbix/cbix-php

PHP library for the Canadian Bitcoin Index API

  • Wednesday, May 6, 2015
  • by garethtdavies
  • Repository
  • 1 Watchers
  • 1 Stars
  • 913 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 1 Versions
  • 1 % Grown

The README.md

CBIX-PHP

Build Status Code Climate Test Coverage, (*1)

This library provides a simple PHP interface to the Canadian Bitcoin Index API., (*2)

Installing via Composer

The recommended way to install the library is through Composer., (*3)

# Install Composer
curl -sS https://getcomposer.org/installer | php

# Add Chain-PHP as a dependency
php composer.phar require cbix/cbix-php:dev-master

After installing, you need to require Composer's autoloader:, (*4)

require 'vendor/autoload.php';

Setup

Simply call the make method on the Cbix class., (*5)

$cbix = Cbix::make();

Methods

All methods of the CBIX API are supported and more will be added when fully supported., (*6)

$index = $cbix->index();
$history = $cbix->history(['limit=100']);
$convert = $cbix->convert(500, 'CAD', 'BTC');
$news = $cbix->news();
$summary = $cbix->summary();
$orderbook = $cbix->orderbook(['limit=25']);
$volatility = $cbix->volatility(['limit=10']);

Exceptions

If there are any issues during the API request a CbixException will be thrown which can be caught and managed according to your application needs., (*7)

try {
    $index = $cbix->index();
    echo $index->index->value;
} catch (CbixException $e) {
    //There was an error more information in $e->getMessage();
    var_dump($e->getMessage());
}

Unit Tests

This library uses PHPUnit for unit testing. In order to run the unit tests, you'll first need to install the dependencies of the project using Composer: php composer.phar install --dev. You can then run the tests using vendor/bin/phpunit. The library comes with a set of mocked responses from the CBIX API for running the unit tests., (*8)

Contributions

Patches, bug fixes, feature requests, and pull requests are welcome., (*9)

The Versions

06/05 2015

dev-master

9999999-dev

PHP library for the Canadian Bitcoin Index API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Gareth Davies

bitcoin cbix