-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
54 lines (54 loc) · 1.26 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
{
"name": "021/crypto-wallets",
"description": "Package for working with crypto wallets",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "021",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"O21\\CryptoWallets\\": "src"
},
"files": [
"src/Support/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.1",
"illuminate/support": "^8.80|^9.0",
"guzzlehttp/guzzle": "^7.4",
"jaggedsoft/php-binance-api": "^0.5.28",
"021/support": "^2.0.1",
"denpa/php-bitcoinrpc": "^v3.0.0",
"ext-bcmath": "*",
"web3p/web3.php": "0.1.6",
"021/ethereum-oracles": "^1.0"
},
"require-dev": {
"symfony/var-dumper": "^5.4",
"phpunit/phpunit": "^9.5",
"vlucas/phpdotenv": "^5.4"
},
"repositories": [
{
"type": "vcs",
"url": "[email protected]:021-projects/php-bitcoinrpc.git"
}
],
"scripts": {
"test": [
"vendor/bin/phpunit tests"
]
}
}