[BREAKGLASS] PHP implementation for the BTCPayServer cryptographically secure RESTful API
Go to file
Ciprian Mandache 5bb6a69b06
Merge pull request #15 from storefront-bvba/symfony4-support
Compatibility with Symfony 4.x + upgraded PHP to stable
2019-08-08 22:54:46 +03:00
build replace user psyb0t with btcpayserver org + more bitpay rm 2019-03-12 15:37:48 +02:00
docs replace user psyb0t with btcpayserver org + more bitpay rm 2019-03-12 15:37:48 +02:00
examples URL updates 2019-05-16 21:06:43 +01:00
src/BTCPayServer Merge pull request #11 from sven-codeculture/patch-1 2019-08-01 00:37:47 +09:00
.coveralls.yml Forgot to add the coveralls config 2014-11-05 09:48:27 -05:00
.editorconfig This introduces new steps to check the format of price 2015-06-17 14:56:20 -04:00
.gitignore Added files for integration testing 2014-11-03 13:07:22 -05:00
.travis.yml Update .travis.yml to also test against PHP 7.2 2017-12-01 12:40:20 +01:00
behat.yml Tests now can be applied to any server 2015-01-02 18:12:11 -05:00
build.xml Replace bitpay strings with btcpayserver and remove a couple of unrelated stuff 2019-03-06 09:18:25 +02:00
CHANGELOG.md Replace bitpay strings with btcpayserver and remove a couple of unrelated stuff 2019-03-06 09:18:25 +02:00
composer.json Compatibility with Symfony 4.x + upgraded PHP to stable 2019-08-06 21:12:15 +02:00
integration_tests.sh replace user psyb0t with btcpayserver org + more bitpay rm 2019-03-12 15:37:48 +02:00
LICENSE.md Replace bitpay strings with btcpayserver and remove a couple of unrelated stuff 2019-03-06 09:18:25 +02:00
Makefile Mink/Behat testing begun 2014-12-11 15:29:22 -05:00
package.json replace user psyb0t with btcpayserver org + more bitpay rm 2019-03-12 15:37:48 +02:00
README.md Inform about BitPay compatibility repo 2019-03-13 14:56:54 +02:00
VERSION Replace bitpay strings with btcpayserver and remove a couple of unrelated stuff 2019-03-06 09:18:25 +02:00

btcpayserver/btcpayserver-php-client

GitHub license Travis Packagist Code Climate Scrutinizer Coveralls

Documentation Status Total Downloads Latest Unstable Version

This is a self-contained PHP implementation of BTCPayServer's cryptographically secure API: https://github.com/btcpayserver/btcpayserver-doc/blob/master/CustomIntegration.md

Before you start

If your application requires BitPay compatibility go to this repository instead https://github.com/btcpayserver/php-bitpay-client

Installation

Composer

Install Composer

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

Install using composer

php composer.phar require btcpayserver/btcpayserver-php-client

Configuration

See https://github.com/btcpayserver/btcpayserver-php-client/tree/master/examples

Usage

Autoloader

To use the library's autoloader (which doesn't include composer dependencies) instead of composer's autoloader, use the following code:

<?php
$autoloader = __DIR__ . '/relative/path/to/src/BTCPayServer/Autoloader.php';
if (true === file_exists($autoloader) &&
    true === is_readable($autoloader))
{
    require_once $autoloader;
    \BTCPayServer\Autoloader::register();
} else {
    throw new Exception('BTCPayServer Library could not be loaded');
}

Documentation

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.

The examples/tutorial directory provides four scripts that guide you with creating a BTCPayServer invoice: https://github.com/btcpayserver/btcpayserver-php-client/blob/master/examples/tutorial/

Support

License

The MIT License (MIT)

Copyright (c) 2017 BTCPayServer, 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.