芝麻web文件管理V1.00
编辑当前文件:/home/pulsehostuk9/www/portal.pulsehost.co.uk/vendor/bitpay/php-client/README.md
bitpay/php-bitpay-client ================= [](https://raw.githubusercontent.com/bitpay/php-bitpay-client/master/LICENSE.md) [](https://travis-ci.org/bitpay/php-bitpay-client) [](https://packagist.org/packages/bitpay/php-client) [](https://codeclimate.com/github/bitpay/php-bitpay-client) [](https://scrutinizer-ci.com/g/bitpay/php-bitpay-client/) [](https://coveralls.io/r/bitpay/php-bitpay-client) [](https://packagist.org/packages/bitpay/php-client) [](https://packagist.org/packages/bitpay/php-client) This is a self-contained PHP implementation of BitPay's cryptographically secure API: https://bitpay.com/api # Installation ## Composer ### Install Composer ```bash curl -sS https://getcomposer.org/installer | php ``` ### Install via composer by hand Add to your composer.json file by hand. ```javascript { ... "require": { ... "bitpay/php-client": "^2.2" } ... } ``` Once you have added this, just run: ```bash php composer.phar update bitpay/php-client ``` ### Install using composer ```bash php composer.phar require bitpay/php-client:^2.2 ``` # Configuration https://help.bitpay.com/8451-Implementation-/how-to-configure-the-php-bitpay-client-library # Usage ## Autoloader To use the library's autoloader (which doesn't include composer dependencies) instead of composer's autoloader, use the following code: ```php