-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
43 lines (43 loc) · 1.28 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": "jimmerioles/bitcoin-currency-converter-php",
"description": "A simple and lightweight bitcoin to currency converter and vice versa based on current exchange rates from your chosen provider: Coinbase, Coindesk, Bitpay and etc.",
"type": "library",
"keywords": [
"bitcoin", "currency", "converter", "coinbase", "coindesk", "bitpay", "cryptocurrency"
],
"license": "MIT",
"authors": [
{
"name": "Jim Merioles",
"email": "jimwisleymerioles@gmail.com"
}
],
"require": {
"php": ">=7.0",
"guzzlehttp/guzzle": "^6.3",
"illuminate/cache": "^5.5",
"illuminate/filesystem": "^5.5",
"composer/composer": "^1.5"
},
"require-dev": {
"phpunit/phpunit": "~5.7",
"mockery/mockery": "0.9.*"
},
"autoload": {
"psr-4": {
"Jimmerioles\\BitcoinCurrencyConverter\\": "src/"
},
"files": [
"src/Util/currency_code_checker_helper.php",
"src/Util/currency_formatter_helper.php",
"src/Util/converter_helper.php",
"src/Util/path_helper.php"
]
},
"autoload-dev": {
"psr-4": {
"Test\\": "tests/"
}
},
"prefer-stable" : true
}