forked from bitpay/php-bitpay-light-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 964 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
{
"name": "bitpay/sdk-light",
"description": "Light 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-light-client",
"require": {
"php": "^7.4 || ^8.0",
"guzzlehttp/guzzle": "^6.3 || ^7.0",
"ext-json": "*",
"ext-openssl": "*"
},
"authors": [
{
"name": "Antonio Buedo",
"email": "[email protected]"
}
],
"require-dev": {
"phpunit/phpunit": "^7.5 || ^9.0"
},
"autoload": {
"psr-4": {
"BitPaySDKLight\\": "src/BitPaySDKLight"
}
},
"autoload-dev": {
"psr-4": {
"BitPaySDKLight\\Test\\": "tests/BitPaySDKLight"
}
}
}