PHPackages                             dizda/coinegger-client-bundle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. dizda/coinegger-client-bundle

Abandoned → [dizda/bitdepot-client-bundle](/?search=dizda%2Fbitdepot-client-bundle)Library[API Development](/categories/api)

dizda/coinegger-client-bundle
=============================

A Symfony2 bundle to interoperate with the Bitdepot bitcoin wallet.

0.0.12(9y ago)29511[2 issues](https://github.com/dizda/BitdepotClientBundle/issues)MITPHPPHP &gt;=5.4.0

Since Jan 14Pushed 9y ago1 watchersCompare

[ Source](https://github.com/dizda/BitdepotClientBundle)[ Packagist](https://packagist.org/packages/dizda/coinegger-client-bundle)[ Docs](https://github.com/dizda)[ RSS](/packages/dizda-coinegger-client-bundle/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (4)Versions (13)Used By (0)

BitdepotClientBundle - Work In Progress
=======================================

[](#bitdepotclientbundle---work-in-progress)

When bitcoin meet Arnold Schwarzenegger.

See the [API Project](https://github.com/dizda/bitdepot).

Setup
-----

[](#setup)

Install with Composer

```
composer require dizda/bitdepot-client-bundle

```

Configuration
-------------

[](#configuration)

To active hooks, you must update your `routing.yml`:

```
dizda_bitdepot_client:
    resource: "@DizdaBitdepotClientBundle/Resources/config/routing.yml"
    prefix:   /callback # don't forget to restrict the path you specify in your security.yml
```

Add this to your `config.yml`:

```
dizda_bitdepot_client:
    base_url:   %bitdepot_endpoint%    # Correspond to the bitdepot api server
    app_id:     %bitdepot_app_id%
    app_secret: %bitdepot_app_secret%
```

Listeners
---------

[](#listeners)

You probably want to listening all interactions that are made on/by your addresses? It's simple.

### DepositListener

[](#depositlistener)

An event `dizda_bitdepot_client.deposit_callback` is dispatched everytime a deposit is made (and reached confirmations you specified).

So, for example, you could create a listener:

```
