forked from codenix-sv/coingecko-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 995 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": "codenix-sv/coingecko-api",
"type": "library",
"description": "PHP REST API client for coingecko.com",
"homepage": "https://github.com/codenix-sv/coingecko-api",
"keywords": ["client", "api", "php", "coingecko.com", "rest"],
"license": "MIT",
"support": {
"issues": "https://github.com/codenix-sv/coingecko-api/issues?state=open",
"source": "https://github.com/codenix-sv/coingecko-api"
},
"authors": [
{
"name": "Volodymyr Svyryd",
"email": "codenix.sv@gmail.com",
"role": "Developer"
}
],
"require": {
"php": "^7.2|^8.0",
"ext-json": "*",
"guzzlehttp/guzzle": "~6.0|^7.0.1"
},
"require-dev": {
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": { "Codenixsv\\CoinGeckoApi\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Codenixsv\\CoinGeckoApi\\Tests\\": "tests/"}
},
"prefer-stable": true
}