-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
46 lines (46 loc) · 1021 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
42
43
44
45
46
{
"name": "jorijn/bitcoin-bolt11",
"description": "A library for decoding lightning network payment requests as defined in BOLT #11",
"type": "library",
"license": "MIT",
"keywords": [
"bitcoin",
"bolt11",
"lightning-network"
],
"homepage": "https://github.com/Jorijn/bitcoin-bolt11/",
"authors": [
{
"name": "Jorijn Schrijvershof",
"email": "jorijn@jorijn.com",
"homepage": "https://jorijn.com"
}
],
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"prefer-stable": true,
"minimum-stability": "stable",
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.10",
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"Jorijn\\Bitcoin\\Bolt11\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Jorijn\\Bitcoin\\Bolt11\\": "tests/"
}
},
"require": {
"php": "^7.4|^8.0",
"ext-bcmath": "*",
"ext-gmp": "*",
"bitwasp/bech32": "^0.0.1",
"protonlabs/bitcoin": "^1.0"
}
}