-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
43 lines (42 loc) · 1.22 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
{
"name": "aelf/aelf-sdk",
"type": "library",
"description": "AElf php SDK",
"keywords": ["aelf-sdk","aelf","AElf php SDK"],
"license": "MIT",
"authors": [
],
"homepage": "https://github.com/AElfProject/aelf-sdk.php",
"require": {
"php": ">=5.6",
"ext-gmp": "*",
"ext-curl": "*",
"kornrunner/secp256k1": "^0.1.2",
"hhxsv5/php-multi-curl": "~1.0",
"stephenhill/base58": "^1.1",
"bitcoin-php/bitcoin-ecdsa" : "^1.3",
"google/protobuf": "^3.11",
"tuupola/base58": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^10"
},
"autoload": {
"classmap": [
"src/helper"
],
"files":["src/helper/Sha.php","src/helper/CurlUniversalRequest.php"],
"psr-4": {
"AElf\\": "src/",
"AElf\\Api\\":"src/sdk/",
"Google\\Protobuf\\": "src/protobuf/Google/Protobuf",
"AElf\\Protobuf\\Generated\\": "src/protobuf/AElf/Protobuf/Generated/",
"GPBMetadata\\":"src/protobuf/GPBMetadata"
}
},
"autoload-dev": {
"psr-4": {
"AElf\\example\\": "example/"
}
}
}