-
Notifications
You must be signed in to change notification settings - Fork 41
/
composer.json
50 lines (50 loc) · 1.13 KB
/
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
42
43
44
45
46
47
48
49
50
{
"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": {
"php": "^8.1 || ^8.2 || ^8.3",
"ext-json": "*",
"ext-reflection": "*",
"bitpay/key-utils": "^1.1",
"guzzlehttp/guzzle": "^7.0",
"symfony/yaml": "^5.4 || ^6.0 || ^7.0",
"netresearch/jsonmapper": "^4.1",
"symfony/console": "^6.0"
},
"authors": [
{
"name": "Antonio Buedo",
"email": "[email protected]"
}
],
"require-dev": {
"phpunit/phpunit": "^9.0 || ^10.2.2"
},
"scripts": {
"setup": [
"php setup/ConfigGenerator.php"
]
},
"autoload": {
"psr-4": {
"BitPaySDK\\": "src/BitPaySDK",
"BitPaySDKexamples\\": "examples"
}
},
"autoload-dev": {
"psr-4": {
"BitPaySDK\\Test\\": "test/unit/BitPaySDK",
"BitPaySDK\\Functional\\": "test/functional/BitPaySDK"
}
}
}