-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.29 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
{
"name": "coinpaprika/dexpaprika-sdk",
"description": "Official PHP SDK for the DexPaprika API. Access multi-chain DEX data, token prices, and liquidity pools with advanced caching and error handling.",
"type": "library",
"license": "MIT",
"keywords": ["dex", "dex-paprika", "sdk", "php", "blockchain", "crypto", "defi", "liquidity", "token", "exchange"],
"autoload": {
"psr-4": {
"DexPaprika\\": "src/DexPaprika/"
}
},
"autoload-dev": {
"psr-4": {
"DexPaprika\\Tests\\": "tests/DexPaprika/"
}
},
"require": {
"php": ">=7.4",
"guzzlehttp/guzzle": "^7.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"friendsofphp/php-cs-fixer": "^3.0"
},
"scripts": {
"test": "phpunit",
"cs-fix": "php-cs-fixer fix"
},
"homepage": "https://github.com/coinpaprika/dexpaprika-sdk-php",
"support": {
"issues": "https://github.com/coinpaprika/dexpaprika-sdk-php/issues",
"source": "https://github.com/coinpaprika/dexpaprika-sdk-php"
},
"authors": [
{
"name": "CoinPaprika Team",
"email": "[email protected]",
"homepage": "https://dexpaprika.com"
}
]
}