[BREAKGLASS] PHP implementation for the BitPay cryptographically secure RESTful API
Go to file
2014-09-23 16:14:05 -04:00
build Found a work around so bootstrap is no longer needed. 2014-09-23 11:09:27 -04:00
docs Added bootstrap.php for testing when coding inside the vendor directory, updated docs, added TokenTest 2014-09-23 11:04:40 -04:00
examples Updated docs and changed default storage method to encrypted filesystem 2014-09-19 13:12:06 -04:00
src/Bitpay Fix for failing unit test 2014-09-23 16:14:05 -04:00
tests/Bitpay Create FingerprintTest.php 2014-09-23 15:20:59 -04:00
.gitignore Removed reference to bin/bitpay in gitignore since it's been deleted 2014-09-19 15:11:25 -04:00
.travis.yml A few small code updates, updated so that everything conforms to PSR1 and PSR2 standards, moved some of the crytpo classes into a crypto directory, add function to return invoice information 2014-09-22 13:08:13 -04:00
build.xml Initial Commit 2014-09-12 06:44:37 -04:00
composer.json A few small code updates, updated so that everything conforms to PSR1 and PSR2 standards, moved some of the crytpo classes into a crypto directory, add function to return invoice information 2014-09-22 13:08:13 -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
RoboFile.php Updated so that a dist file can be made for distribution 2014-09-12 09:35:13 -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.