This is a self-contained PHP implementation of BTCPayServer's cryptographically secure API: https://github.com/btcpayserver/btcpayserver-doc/blob/master/CustomIntegration.md
If your application requires BitPay compatibility go to this repository instead https://github.com/btcpayserver/php-bitpay-client
curl -sS https://getcomposer.org/installer | php
php composer.phar require btcpayserver/btcpayserver-php-client
See https://github.com/btcpayserver/btcpayserver-php-client/tree/master/examples
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');
}
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/
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.