[BREAKGLASS] PHP implementation for the BitPay cryptographically secure RESTful API
Go to file
2014-10-10 15:31:44 -04:00
build Updated construct to take the currency code as an optional argument 2014-10-06 10:45:34 -04:00
docs Updated construct to take the currency code as an optional argument 2014-10-06 10:45:34 -04:00
examples Updates that provide the client object to be tested better and have a lot better control over the inputs and outputs of the responses and the requests sent 2014-09-26 09:27:23 -04:00
src/Bitpay Updated the test so it knows the invoice interface was returned and updated some bad code 2014-10-09 18:31:09 -04:00
tests Updated the test so it knows the invoice interface was returned and updated some bad code 2014-10-09 18:31:09 -04:00
.gitignore Replaced full-text licenses with references 2014-09-29 09:16:06 -04:00
.travis.yml Updated construct to take the currency code as an optional argument 2014-10-06 10:45:34 -04:00
build.xml Initial Commit 2014-09-12 06:44:37 -04:00
composer.json Merge branch 'master' of https://github.com/bitpay/php-bitpay-client 2014-10-10 15:31:44 -04:00
LICENSE Updated license 2014-09-12 08:15:52 -04:00
README.md Updated readme file with packagist badges 2014-09-22 06:54:06 -04:00
VERSION Updated so that a dist file can be made for distribution 2014-09-12 09:35:13 -04:00

bitpay/php-client

Build Status Documentation Status Latest Stable Version Total Downloads Latest Unstable Version License

This is a self-contained PHP implementation of BitPay's new cryptographically secure API: https://bitpay.com/api

Installation

Composer

Install Composer

curl -sS https://getcomposer.org/installer | php

Install via composer by hand

Add to your composer.json file by hand.

{
    ...
    "require": {
        ...
        "bitpay/php-client": "~2.0"
    }
    ...
}

Once you have added this, just run:

php composer.phar update bitpay/php-client

Install using composer

php composer.phar require bitpay/php-client:~2.0

Configuration

See http://php-bitpay-client.readthedocs.org/en/latest/configuration.html

Usage

Please see the docs directory for information on how to use this library and the examples directory for examples on using this library. You should be able to run all the examples by running php examples/File.php.

Reading the latest documentation at http://php-bitpay-client.readthedocs.org/ can also help.

Support

License

The MIT License (MIT)

Copyright (c) 2014 BitPay, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.