-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
34 lines (34 loc) · 893 Bytes
/
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
{
"name": "tpenaranda/bcoin-laravel",
"description": "A Laravel 5 package to connect with BCoin (bcoin.io) full node API.",
"keywords": ["tpenaranda", "bcoin", "laravel", "btc", "api", "node"],
"type": "library",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Tate Peñaranda",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "~7",
"laravel/framework": "~5",
"guzzlehttp/guzzle": "^6.3"
},
"autoload": {
"psr-4": {
"TPenaranda\\BCoin\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"TPenaranda\\BCoin\\BCoinServiceProvider"
],
"aliases": {
"BCoinNode": "TPenaranda\\BCoin\\Facades\\BCoin"
}
}
}
}