-
Notifications
You must be signed in to change notification settings - Fork 76
/
composer.json
66 lines (66 loc) · 1.85 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
{
"name": "monero-integrations/monerophp",
"description": "A Monero library written in PHP by the Monero-Integrations team.",
"keywords": ["Monero", "XMR", "monerod", "monero-wallet-rpc", "cryptonote", "JSONRPC", "JSON-RPC", "cryptocurrency"],
"homepage": "https://github.com/monero-integrations/monerophp",
"type": "library",
"version" : "1.0.1",
"license": "MIT",
"authors": [
{
"name": "SerHack",
"email": "[email protected]"
},
{
"name": "cryptochangements34",
"email": "[email protected]"
},
{
"name": "sneurlax",
"email": "[email protected]"
}
],
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
},
"require": {
"php": ">=7.3",
"ext-bcmath": "*",
"ext-curl": "*",
"ext-json": "*",
"kornrunner/keccak": "^1.1"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "*",
"phpstan/extension-installer": "*",
"brainmaestro/composer-git-hooks": "^2.8",
"squizlabs/php_codesniffer": "*"
},
"suggest": {
"ext-gmp": "Used to have a multiple math precision for generating address"
},
"autoload": {
"psr-4": {
"MoneroIntegrations\\MoneroPhp\\": "src/"
}
},
"extra": {
"hooks": {
"pre-commit": [
"vendor/bin/phpcbf"
]
}
},
"scripts": {
"post-install-cmd": "cghooks add --ignore-lock",
"post-update-cmd": "cghooks update",
"lint": [
"phpcbf || true",
"phpcs || true",
"phpstan analyse --memory-limit 1G"
]
}
}