-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
82 lines (82 loc) · 1.62 KB
/
Copy pathcomposer.json
File metadata and controls
82 lines (82 loc) · 1.62 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "rpcnode/sdk",
"description": "Official PHP SDK for the RpcNode Public API: dedicated fullnode RPC endpoints (Ethereum, Solana, Bitcoin, Tron, BNB Chain, Polygon, Arbitrum, Optimism, Base, and more), HMAC-signed merchant HTTP, address watch webhooks, and crypto payments.",
"type": "library",
"license": "MIT",
"homepage": "https://api.rpcnode.dev",
"keywords": [
"rpcnode",
"rpc",
"json-rpc",
"fullnode",
"full-node",
"archive-node",
"blockchain-node",
"crypto-node",
"web3",
"blockchain",
"cryptocurrency",
"rpc-endpoint",
"dedicated-node",
"ethereum",
"geth",
"erigon",
"solana",
"bitcoin",
"tron",
"bsc",
"bnb-chain",
"polygon",
"matic",
"arbitrum",
"optimism",
"base",
"hyperliquid",
"xrpl",
"xrp",
"dogecoin",
"cardano",
"sui",
"stellar",
"hedera",
"litecoin",
"dash",
"bitcoin-cash",
"aptos",
"polkadot",
"ethereum-classic",
"shibarium",
"hmac",
"merchant-api",
"payments",
"address-watch",
"webhook"
],
"support": {
"source": "https://github.com/rpcnode/api-sdk-php",
"issues": "https://github.com/rpcnode/api-sdk-php/issues",
"docs": "https://api.rpcnode.dev"
},
"require": {
"php": ">=8.2",
"ext-curl": "*",
"ext-json": "*",
"ext-hash": "*"
},
"require-dev": {
"phpunit/phpunit": "^11.0"
},
"autoload": {
"psr-4": {
"RpcNode\\Sdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RpcNode\\Sdk\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit"
}
}