42 lines
838 B
JSON
42 lines
838 B
JSON
{
|
|
"name": "btcpayserver/sdk",
|
|
"description": "Complete version of the PHP library for the new cryptographically secure BitPay API",
|
|
"license": "MIT",
|
|
"minimum-stability": "stable",
|
|
"keywords": [
|
|
"btcpayserver",
|
|
"bitcoin",
|
|
"cash",
|
|
"payment",
|
|
"gateway"
|
|
],
|
|
"homepage": "https://github.com/btcpayserver/php-btcpay-client-v2",
|
|
"require": {
|
|
"bitpay/key-utils": "^1.0",
|
|
"php": "^7.1",
|
|
"guzzlehttp/guzzle": "^6.3",
|
|
"ext-json": "*",
|
|
"ext-reflection": "*",
|
|
"symfony/yaml": "^3.0 || ^4.3"
|
|
},
|
|
"authors": [
|
|
{
|
|
"name": "Markus Petzsch",
|
|
"email": "markus@petzsch.eu"
|
|
}
|
|
],
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^7.5"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"BtcPaySDK\\Test\\": "tests/"
|
|
}
|
|
}
|
|
}
|