-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
63 lines (63 loc) · 1.48 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
{
"name": "ranabd36/larathereum",
"description": "Ethereum Client Library For Laravel",
"keywords": [
"ethereum",
"ethereum client",
"erc20",
"smart contract",
"laravel package"
],
"homepage": "https://github.com/ranabd36/larathereum",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Ibrahim Al Naz Rana",
"email": "ranabd36@gmail.com"
}
],
"require": {
"php": "^7.1",
"ext-bcmath": "*",
"graze/guzzle-jsonrpc": "^3.2",
"phlib/base_convert": "^1.0",
"web3p/rlp": "~0.2.1",
"web3p/ethereum-util": "~0.1.1",
"kornrunner/keccak": "~1",
"simplito/elliptic-php": "1.0.*"
},
"autoload": {
"psr-4": {
"Larathereum\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Larathereum\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Larathereum\\LarathereumServiceProvider"
],
"aliases": {
"Eth": "Larathereum\\Facades\\EthFacade",
"Web3": "Larathereum\\Facades\\Web3Facade",
"Personal": "Larathereum\\Facades\\PersonalFacade",
"Util": "Larathereum\\Facades\\UtilFacade",
"Shh": "Larathereum\\Facades\\ShhFacade",
"Net": "Larathereum\\Facades\\NetFacade",
"Contract": "Larathereum\\Facades\\ContractFacade"
}
}
}
}