[BREAKGLASS] PHP implementation for the BitPay cryptographically secure RESTful API
Go to file
2014-09-19 14:03:55 -04:00
bin A little refactoring getting ready for some key on key action 2014-09-15 14:58:29 -04:00
build Updated docs and changed default storage method to encrypted filesystem 2014-09-19 13:12:06 -04:00
docs Updated docs and changed default storage method to encrypted filesystem 2014-09-19 13:12:06 -04:00
examples Updated docs and changed default storage method to encrypted filesystem 2014-09-19 13:12:06 -04:00
src/Bitpay A little refactoring and ran php-cs-fixer on both files 2014-09-19 14:03:55 -04:00
tests/Bitpay A little refactoring and ran php-cs-fixer on both files 2014-09-19 14:03:55 -04:00
.gitignore Updated so all tests are passing and adding some testing keys and a test configuration file 2014-09-16 10:47:30 -04:00
.travis.yml Added 5.3 to test 2014-09-19 11:20:44 -04:00
build.xml Initial Commit 2014-09-12 06:44:37 -04:00
composer.json Removed monolog 2014-09-19 11:52:54 -04:00
LICENSE Updated license 2014-09-12 08:15:52 -04:00
README.md Updated readme and some more docs 2014-09-19 12:03:40 -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

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

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.

Configuration

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

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.