Path: blob/master/bitget-php-sdk-api/composer.json
731 views
{1"name": "bitget/sdk",2"description": "This is an api sdk about OKEx V3",3"type": "library",4"license": "MIT",5"authors": [6{7"name": "Heng Liu",8"email": "[email protected]"9}10],11"require": {12"php": ">=7.4",13"workerman/workerman": "^3.5",14"textalk/websocket": "*",15"ext-curl": "*",16"ext-json": "*",17"ext-mbstring": "*",18"guzzlehttp/guzzle": "^6.2"19},20"require-dev": {21"phpunit/phpunit": "^4.8",22"squizlabs/php_codesniffer": "~2.6",23"friendsofphp/php-cs-fixer": "~2.12"24},25"autoload": {26"psr-4": {27"bitget\\" : "src"28},29"files": [30"src/internal/BitgetWsClient.php"31]32},33"autoload-dev": {34"psr-4": { "test\\" : "test" }35}36}373839