-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
35 lines (35 loc) · 929 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
{
"name": "fenguoz/chia-php",
"description": "Supports functions such as obtaining current blockchain information, obtaining current altitude, obtaining current network information, creating a new wallet, generating mnemonic words, initiating transactions, and obtaining transaction records in Chia’s XCH.",
"keywords": [
"php",
"rpc",
"chia",
"xch"
],
"type": "library",
"homepage": "https://github.com/Fenguoz/chia-php",
"license": "MIT",
"authors": [
{
"name": "Fenguoz",
"email": "[email protected]"
}
],
"require": {
"guzzlehttp/guzzle": "^6.0 || ^7.0"
},
"require-dev": {
"phpunit/phpunit": "^5.7 || ^7.5"
},
"autoload": {
"psr-4": {
"Chia\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "tests/"
}
}
}