[BREAKGLASS] PHP implementation for the BitPay cryptographically secure RESTful API
Go to file
2015-02-19 11:22:35 -05:00
build Minor formatting update 2014-12-04 19:47:37 -05:00
docs Convert RST to Markdown. 2015-01-14 14:26:28 -05:00
examples Fixed Example Tutorial 003. Item was not being set on invoice 2014-12-10 07:04:12 -05:00
src/Bitpay Token Update 2015-02-03 18:05:58 -05:00
tests Token Update 2015-02-03 18:05:58 -05:00
.coveralls.yml Forgot to add the coveralls config 2014-11-05 09:48:27 -05:00
.gitignore Added files for integration testing 2014-11-03 13:07:22 -05:00
.travis.yml Travis won't have local bitpay so can't run integration tests 2014-12-19 15:51:24 -05:00
behat.yml Tests now can be applied to any server 2015-01-02 18:12:11 -05:00
build.xml Add phpcs to build.xml 2014-11-27 03:22:48 +00:00
composer.json Updated dependencies to fix Travis build 2015-02-17 11:32:37 -05:00
integration_tests.sh Tests now can be applied to any server 2015-01-02 18:12:11 -05:00
LICENSE Updated license 2014-09-12 08:15:52 -04:00
Makefile Mink/Behat testing begun 2014-12-11 15:29:22 -05:00
package.json Updated keywords, description & author data 2015-02-19 11:22:35 -05:00
README.md Update README.md 2015-02-17 10:22:42 -05:00
VERSION Update VERSION 2015-02-17 11:31:21 -05:00

bitpay/php-bitpay-client

Coverage Status 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) 2015 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.