nsiimbi/block_io-php

Block.io is the easiest way to create wallets, send, and accept payments through Bitcoin, Litecoin, and Dogecoin. This is its PHP library.

2.0.2 2021-06-10 00:44 UTC

README

Current Release: 2.0.2
06/09/21: Minor. Adds support for dynamic decryption algorithms.
06/01/21: Maintenance release. Fix Windows missing CACERT error.
05/27/21: BREAKING CHANGES. Transaction interfaces have changed. Test thoroughly before use.

PHP wrapper for Block.io for use with Dogecoin, Bitcoin, and Litecoin. Simple abstraction layer on top of existing API interfaces, and automatic JSON decoding on response.

Requirements

This library requires: gmp, cURL, mbstring, and bcmath extensions. PHP7.2, PHP7.3, PHP7.4, or PHP8.0.

Warning

Make sure all PHPUnit tests pass before using this library on your system.

Usage

Install via Composer

{
    "require":{
	"block_io-php/block_io-php": "2.0.2",
	"bitwasp/bitcoin": "dev-minimal"
    },
    "repositories": [
        {
            "type": "git",
            "url": "https://github.com/doersf/bitcoin-php.git"
        }
    ]
}

See examples/ and https://block.io/api/simple/php for basic usage.

Please see Block.io PHP Docs for details on available calls.