-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
78 lines (78 loc) · 2.33 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "refring/monero-rpc-php",
"description": "A modern fully strong-typed library for using the Monero daemon rpc and wallet rpc APIs",
"keywords": ["monero", "monero-wallet-rpc", "monero daemon","sdk", "api", "client"],
"license": "MIT",
"authors": [
{
"name": "refring",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1.0",
"ext-json": "*",
"ext-bcmath": "*",
"php-http/discovery": "^1.19.0",
"psr/http-client": "^1.0.2",
"psr/http-client-implementation": "*",
"psr/http-factory-implementation": "*",
"psr/http-message": "^1.1.0|^2.0.0",
"psr/log": "^3.0",
"square/pjson": "^0.4.0"
},
"require-dev": {
"ext-sockets": "*",
"laravel/pint": "^1.10.3",
"monero-integrations/monerophp": "dev-master",
"nyholm/psr7": "^1.8",
"phpstan/phpstan": "^1.10.25",
"phpunit/phpunit": "^10.3.3",
"rector/rector": "^0.18.4",
"symfony/http-client": "^6.3"
},
"suggest": {
"guzzlehttp/guzzle": "HTTP client"
},
"autoload": {
"psr-4": {
"RefRing\\MoneroRpcPhp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RefRing\\MoneroRpcPhp\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"php-http/discovery": false
}
},
"scripts": {
"lint": "pint --preset psr12 -v",
"refactor": "rector --debug",
"test:lint": "pint --preset psr12 --test -v",
"test:refactor": "rector --dry-run",
"test:phpstan": "phpstan analyse --ansi",
"test:unit": "phpunit --testsuite unit",
"test:integration": "phpunit --testsuite integration",
"test:coverage": "XDEBUG_MODE=coverage phpunit --coverage-text --coverage-clover tests/_reports/clover.xml --coverage-html tests/_reports/html",
"test": [
"@test:lint",
"@test:phpstan",
"@test:unit",
"@test:integration"
]
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/refring/monerophp.git"
}
]
}