-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
49 lines (49 loc) · 979 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "ilcleme/cryptocurrencies-laravel",
"description": "Laravel package for cryptocurrencies api service",
"type": "library",
"keywords": [
"laravel",
"crypto",
"cryptocompare",
"coinmarketcap",
"package"
],
"license": "MIT",
"authors": [
{
"name": "Mattia Clementi",
"email": "[email protected]",
"homepage": "https://mattiaclementi.it",
"role": "Developer"
}
],
"require": {
"php": "^7.1.3",
"guzzlehttp/guzzle": "^6.0"
},
"autoload": {
"psr-4": {
"IlCleme\\Cryptocurrencies\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"IlCleme\\Cryptocurrencies\\Test\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"IlCleme\\Cryptocurrencies\\Providers\\CryptocurrenciesServiceProvider"
]
}
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"orchestra/testbench": "^3.7"
},
"config": {
"sort-packages": true
}
}