-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 933 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
{
"name": "kodmanyagha/web3php",
"description": "Ethereum web3 interface.",
"type": "library",
"license": "MIT",
"version": "1.0.26-dev",
"authors": [
{
"name": "Emir Bugra Koksalan",
"email": "[email protected]"
}
],
"require": {
"guzzlehttp/guzzle": "^6.3|^7.0",
"PHP": "^7.2|^8.0|^8.1",
"kornrunner/keccak": "~1.0",
"kornrunner/secp256k1": "^0.2",
"phpseclib/phpseclib": "~2.0.30",
"sop/asn1": "^3.3",
"sop/crypto-encoding": "^0.2.0",
"sop/crypto-types": "^0.2.1",
"ext-mbstring": "*",
"ext-gmp": "*",
"ext-openssl": "*"
},
"require-dev": {
"phpunit/phpunit": "~8.0|~9.0"
},
"autoload": {
"psr-4": {
"Kdm\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\": "test/"
}
}
}