-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 1.55 KB
/
Copy pathcomposer.json
File metadata and controls
73 lines (73 loc) · 1.55 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
{
"name": "hardcastle/xrpl_php",
"description": "PHP SDK / Client for the XRP Ledger",
"type": "library",
"keywords": [
"xrpl",
"ripple",
"cryptocurrency",
"blockchain",
"client",
"sdk",
"xrp",
"stablecoin",
"rlusd",
"usdc",
"eurc"
],
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Alexander Busse",
"email": "alexander.busse@posteo.net"
}
],
"config": {
"optimize-autoloader": true,
"platform": {
"php": "8.2.27"
}
},
"autoload": {
"psr-4": {
"Hardcastle\\XRPL_PHP\\": "src/"
},
"files": [
"src/Polyfill.php",
"src/Sugar/autofill.php",
"src/Sugar/balances.php",
"src/Sugar/fundWallet.php",
"src/Sugar/getFeeXrp.php",
"src/Sugar/getOrderbook.php",
"src/Sugar/getTransactions.php",
"src/Sugar/submit.php",
"src/Sugar/xrpConversion.php"
]
},
"autoload-dev": {
"psr-4": {
"Hardcastle\\XRPL_PHP\\Test\\": "tests/"
}
},
"require": {
"brick/math": ">=0.11 <0.18" ,
"codedungeon/php-cli-colors": "^1.12",
"ext-bcmath": "*",
"guzzlehttp/guzzle": "^7.4",
"php-ds/php-ds": "^1.4",
"simplito/elliptic-php": "^1.0.12",
"simplito/bn-php": "^1.1.4",
"hardcastle/buffer": "^1.0.1",
"vlucas/phpdotenv": "^5.6"
},
"require-dev": {
"phpunit/phpunit": "^11.5",
"vimeo/psalm": "^6.8",
"donatj/mock-webserver": "^2.10.0",
"rector/rector": "^2.3"
},
"scripts": {
"psalm": "vendor/bin/psalm --config=psalm.xml"
}
}