-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 842 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 842 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
{
"name": "bitwasp/bitcoin-p2p",
"description": "Implementation of the bitcoin protocol using ReactPHP",
"type": "library",
"homepage": "https://github.com/bit-wasp/node-php",
"license": "Unlicense",
"authors": [
{
"name": "Thomas Kerin",
"homepage": "https://thomaskerin.io",
"role": "Author"
}
],
"autoload": {
"psr-4": {
"BitWasp\\Bitcoin\\Networking\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BitWasp\\Bitcoin\\Tests\\Networking\\": "tests/unit/"
}
},
"require": {
"bitwasp/bitcoin": "^1.0.0",
"react/socket": "^0.8.0",
"react/dns": "^0.4.0",
"christian-riesen/base32": "^1.3.0"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.0",
"phpunit/phpunit": "^6.0",
"symfony/yaml": "~2.6",
"phpstan/phpstan": "^0.9.2"
}
}