-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (39 loc) · 1.08 KB
/
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": "xrplwin/xrpl-orderbook-reader",
"description": "This repository takes XRPL Orderbook (book_offers) datasets and requested volume to exchange and calculates the effective exchange rates based on the requested and available liquidity.",
"keywords": ["xrpl", "composer", "package", "ripple", "rippled", "xrp", "book_offers", "orders", "rate", "exchange"],
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Zvjezdan Grgurić",
"email": "zgrguric@xrplwin.com"
}
],
"homepage": "https://github.com/XRPLWin",
"autoload": {
"psr-4": {
"XRPLWin\\XRPLOrderbookReader\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"XRPLWin\\XRPLOrderbookReader\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.1.0",
"xrplwin/xrpl": "^1.0",
"brick/math": "^0.10.2"
},
"require-dev": {
"phpunit/phpunit": "^10.1",
"symfony/var-dumper": "^6.1",
"phplucidframe/console-table": "^1.2"
},
"scripts": {
"test": "./vendor/bin/phpunit --testdox"
}
}