PHP libraries implementing bitcoin key functions, as well as BIP32 and electrum.
NB: This library is outdated, and no longer maintained. BC breaks will not be accepted for this reason. For a newer library, please see https://github.com/Bit-Wasp/bitcoin-php
The library intends to expose a lot of general functionality which isn't available using the RPC (like deterministic addresses).
It also allows you to reduce the number of queries that are made to bitcoind, such as createrawtransaction/signrawtransaction/decoderawtransaction. As such, such, use of bitcoin RPC functionality can be kept to a minimum.
If this library powers your project and you're feeling tipsy, buy me lunch some day! 1sCVtkEhQmvp3D4K22Pw9xhFPTDWFh8SZ
Install Composer in your project:
curl -s http://getcomposer.org/installer | php
Create a composer.json
file in your project root:
{ "require": { "bitwasp/bitcoin-lib": "1.0.*" } }
Install via Composer
php composer.phar install
The Mcrypt Extension is required for generating random data, it does this internally
by using /dev/urandom
on unix or CryptGenRandom
on windows.
The GMP Extension is required for the crypto math.
The PECL intl extension is required for BIP39 Mnemonic Seeds when a UTF-8 passphrase is used.
mdanter/ecc
is required for most of the crypto.
Please make sure that all phpunit tests pass (and preferably added new unit tests) and that the coding style passing PSR2 checks:
./vendor/bin/phpunit
./vendor/bin/phpcs --standard=./phpcs.xml -n -s ./src/