forked from bitpay/php-bitpay-client-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 879 Bytes
/
composer.json
File metadata and controls
41 lines (41 loc) · 879 Bytes
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 || ^7.0",
"ext-json": "*",
"ext-reflection": "*",
"symfony/yaml": "^3.0 || ^4.3 || ^5.0"
},
"authors": [
{
"name": "Antonio Buedo",
"email": "solutions-engineering@bitpay.com"
}
],
"require-dev": {
"phpunit/phpunit": "^7.5"
},
"autoload": {
"psr-4": {
"BitPaySDK\\": "src/BitPaySDK"
}
},
"autoload-dev": {
"psr-4": {
"BitPaySDK\\Test\\": "tests/BitPaySDK"
}
}
}