-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
43 lines (43 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
38
39
40
41
42
43
{
"name": "xelbot/crypto-wallet-validator",
"description": "Library for validation of cryptocoin wallets",
"keywords": [
"ethereum",
"crypto",
"address",
"wallet",
"validator"
],
"homepage": "https://github.com/xelbot/crypto-wallet-validator",
"license": "MIT",
"authors": [
{
"name": "Alexander Harchenko",
"email": "morontt@gmail.com",
"homepage": "https://morontt.info",
"role": "Developer"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=7.1.0|^8",
"kornrunner/keccak": "~1.0",
"ext-bcmath": "*",
"ext-sodium": "*",
"lessmore92/base-x": "dev-main"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.8",
"phpunit/phpunit": "^7.0|^8|^9"
},
"autoload": {
"psr-4": {
"Xelbot\\Crypto\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
}
}