2017 © Pedro Peláez
 

library bitcoind-bundle

A bundle which provides integration with bitcoind php library

image

infernosquad/bitcoind-bundle

A bundle which provides integration with bitcoind php library

  • Tuesday, August 2, 2016
  • by Infernosquad
  • Repository
  • 1 Watchers
  • 1 Stars
  • 10 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Installation

Add InfernosquadBitcoindBundle to your project

composer require infernosquad/bitcoind-bundle

Enable the bundle

Enable the bundle in the kernel:, (*1)

// app/AppKernel.php

public function registerBundles()
{
    $bundles = array(
        // ...
        new Infernosquad\BitcoindBundle\InfernosquadBitcoindBundle(),
    );
}

Configuration

Configure your bitcoind clients

#app/config/config.yml
infernosquad_bitcoind:
    drivers:
      driver1:
          class: 'Nbobtc\Http\Driver\CurlDriver' #default
          options:
              name: value
              name1: value1

    clients:
        client1:
            dsn: 'https://username:password@localhost:18332'
            driver: driver1

Usage

Now you can get your clients and drivers from controllers.
See documentation of bitcoind bundle https://github.com/nbobtc/bitcoind-php, (*2)

$client = $this->container->get('infernosquad.bitcoind.clients.client1');

The Versions

02/08 2016

dev-master

9999999-dev

A bundle which provides integration with bitcoind php library

  Sources   Download

MIT

The Requires

 

by Avatar Infernosquad

02/08 2016

v0.1

0.1.0.0

A bundle which provides integration with bitcoind php library

  Sources   Download

MIT

The Requires

 

by Avatar Infernosquad