-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.24 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
40
41
42
43
44
45
46
47
48
49
{
"name": "ecourty/xrpl-php",
"description": "A PHP library to interact with an XRP Ledger Node.",
"type": "library",
"homepage": "https://github.com/EdouardCourty/xrpl-php",
"keywords": [
"ripple",
"xrp",
"json-rpc",
"php"
],
"prefer-stable": true,
"require": {
"php": ">=8.3",
"ext-bcmath": "*",
"ext-gmp": "*",
"symfony/http-client": "^7.2|^6.4",
"symfony/property-access": "^7.2|^6.4",
"symfony/serializer": "^7.2|^6.4",
"phpdocumentor/reflection-docblock": "^5.6",
"simplito/elliptic-php": "^1.0",
"stephenhill/base58": "^1.1"
},
"require-dev": {
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^11.5",
"friendsofphp/php-cs-fixer": "^3.65"
},
"license": "MIT",
"autoload": {
"psr-4": {
"XRPL\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"XRPL\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Edouard Courty",
"email": "[email protected]",
"homepage": "https://github.com/EdouardCourty",
"role": "Author"
}
],
"readme": "README.md"
}