-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1.01 KB
/
composer.json
File metadata and controls
38 lines (38 loc) · 1.01 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
{
"name": "xrplwin/xrpl-hookparser",
"description": "Transaction Hook parser for hook-enabled XRPL/Xahau networks. ",
"keywords": ["xrpl", "composer", "package", "xahau", "xah", "xrp", "transaction", "tx", "parser", "hook", "hooks", "perspective", "participats"],
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Zvjezdan Grgurić",
"email": "zgrguric@xrplwin.com"
}
],
"homepage": "https://github.com/XRPLWin",
"autoload": {
"psr-4": {
"XRPLWin\\XRPLHookParser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"XRPLWin\\XRPLHookParser\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.1.0",
"ext-bcmath": "*",
"brick/math": "^0.10||^0.11||^0.12"
},
"require-dev": {
"phpunit/phpunit": "^10.1",
"symfony/var-dumper": "^6.1"
},
"scripts": {
"test": "./vendor/bin/phpunit --testdox"
}
}