-
Notifications
You must be signed in to change notification settings - Fork 8
/
composer.json
44 lines (44 loc) · 1.22 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
{
"name": "xrpl/xumm-sdk-php",
"description": "A PHP SDK for Xumm by XRPLabs.",
"type": "library",
"autoload": {
"psr-4": {
"Xrpl\\XummSdkPhp\\Tests\\": "tests/",
"Xrpl\\XummSdkPhp\\": "src/"
}
},
"authors": [
{
"name": "Pauline Vos",
"email": "[email protected]"
}
],
"keywords": ["xrp","ripple","xrpl","xumm"],
"homepage": "https://xumm.readme.io/",
"license": "MIT",
"prefer-stable": true,
"require": {
"php": "^8.2.0",
"guzzlehttp/guzzle": "^7.4",
"symfony/serializer": "^6.0",
"vlucas/phpdotenv": "^5.4",
"symfony/property-access": "^6.0",
"ratchet/pawl": "^0.4.1",
"monolog/monolog": "^3.0",
"symfony/yaml": "^6.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"behat/behat": "^3.10",
"squizlabs/php_codesniffer": "dev-master",
"wyrihaximus/async-test-utilities": "^4.2"
},
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true
}
}
}