-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 894 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 894 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
{
"name": "m8b/ether-binder",
"description": "Set of utilities for interacting with Ethereum and it's smart contracts with PHP, with generating ABI bindings and Ethereum-related types",
"type": "library",
"license": "MPL-2.0",
"autoload": {
"psr-4": {
"M8B\\EtherBinder\\": "src/"
}
},
"authors": [
{
"name": "DubbaThony"
}
],
"minimum-stability": "stable",
"bin": [
"bin/abigen.php"
],
"require": {
"php": ">=8.2",
"composer-runtime-api": "^2.2",
"ext-openssl": "*",
"ext-curl": "*",
"ext-ctype": "*",
"ext-gmp": "*",
"kornrunner/keccak": "^1.1",
"simplito/elliptic-php": "^1.0",
"furqansiddiqui/bip39-mnemonic-php": "^0.1.7",
"nikic/php-parser": "^4.17",
"vanilla/garden-cli": "^4.0"
}
}