-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 1.02 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
{
"name": "xrplwin/xrpl-txparticipantextractor",
"description": "Parse XRPL transaction and extracts all participating accounts.",
"keywords": ["xrpl", "composer", "package", "ripple", "rippled", "nft", "xrp", "transaction", "tx", "parser", "mutation", "perspective", "participats"],
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Zvjezdan Grgurić",
"email": "zgrguric@xrplwin.com"
}
],
"homepage": "https://github.com/XRPLWin",
"autoload": {
"psr-4": {
"XRPLWin\\XRPLTxParticipantExtractor\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"XRPLWin\\XRPLTxParticipantExtractor\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.1.0",
"hardcastle/xrpl_php": "^0.8"
},
"require-dev": {
"phpunit/phpunit": "^10.1",
"symfony/var-dumper": "^6.1"
},
"scripts": {
"test": "./vendor/bin/phpunit --testdox"
}
}