-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
38 lines (38 loc) · 963 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
{
"name": "xrplwin/xrpl",
"description": "A PHP package for communication with the XRP Ledger.",
"keywords": ["xrpl", "composer", "package", "ripple", "rippled", "xrp"],
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Zvjezdan Grgurić",
"email": "[email protected]"
}
],
"homepage": "https://github.com/XRPLWin",
"autoload": {
"psr-4": {
"XRPLWin\\XRPL\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"XRPLWin\\XRPL\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.1.0",
"guzzlehttp/guzzle": "^7.4",
"brick/math": "^0.10.2|^0.11|^0.12"
},
"require-dev": {
"phpunit/phpunit": "^10.1",
"symfony/var-dumper": "^6.1"
},
"scripts": {
"test": "./vendor/bin/phpunit --testdox"
}
}