forked from AElfProject/aelf-sdk.php
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (42 loc) · 1.26 KB
/
composer.json
File metadata and controls
43 lines (42 loc) · 1.26 KB
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"
},
"require-dev": {
"phpunit/phpunit": "^6.2"
},
"autoload": {
"classmap": [
"src/helper"
],
"files":["src/helper/Sha.php"],
"psr-4": {
"AElf\\": "src/",
"AElf\\Api\\":"src/sdk/",
"Hhxsv5\\PhpMultiCurl\\": "src/helper",
"StephenHill\\": "src/helper",
"StephenHill\\Benchmarks\\": "benchmarks/",
"AElf\\AElfECDSA\\": "src/helper/",
"Google\\Protobuf\\": "src/pro/Google/Protobuf",
"GPBMetadata\\Google\\Protobuf\\": "src/GPBMetadata/Google/Protobuf",
"AElf\\Protobuf\\Generated\\": "src/pro/AElf/Protobuf/Generated/",
"GPBMetadata\\": "src/pro/GPBMetadata/"
}
},
"autoload-dev": {
"psr-4": {
"AElf\\example\\": "example/"
}
}
}