forked from bitpay/php-bitpay-client-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 837 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "bitpay/sdk",
"description": "Complete version of the PHP library for the new cryptographically secure BitPay API",
"license": "MIT",
"minimum-stability": "stable",
"keywords": [
"bitpay",
"bitcoin",
"cash",
"payment",
"gateway"
],
"homepage": "https://github.com/bitpay/php-bitpay-client-v2",
"require": {
"bitpay/key-utils": "^1.0",
"php": "^7.1",
"guzzlehttp/guzzle": "^6.3",
"ext-json": "^1.5",
"ext-reflection": "*",
"symfony/yaml": "^3.0 || ^4.3"
},
"authors": [
{
"name": "Antonio Buedo",
"email": "solutions-engineering@bitpay.com"
}
],
"require-dev": {
"phpunit/phpunit": "^7.5"
},
"autoload": {
"psr-4": {
"": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BitPaySDK\\Test\\": "tests/"
}
}
}