12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- {
- "name": "fenguoz/tron-api",
- "description": "A PHP API for interacting with Tron (Trx)",
- "license": "MIT",
- "type": "library",
- "homepage": "https://github.com/fenguoz/tron-api",
- "authors": [
- {
- "name": "Shamsudin Serderov",
- "email": "steein.shamsudin@gmail.com"
- }
- ],
- "keywords": [
- "tron-lib",
- "tron-php",
- "tron-api",
- "tron-rest-api"
- ],
- "require": {
- "php": ">=8.0",
- "fenguoz/data-types": "^1.0",
- "guzzlehttp/guzzle": "^7.2",
- "fenguoz/web3.php": "^1.0",
- "kornrunner/secp256k1": "^0.2",
- "simplito/elliptic-php": "^1.0",
- "ext-json": "*",
- "ext-bcmath": "*"
- },
- "require-dev": {
- "phpunit/phpunit": "~9.0"
- },
- "autoload": {
- "psr-4": {
- "IEXBase\\TronAPI\\": "src"
- }
- },
- "autoload-dev": {
- "psr-4": {
- "IEXBase\\TronAPI\\Test\\": "tests"
- }
- },
- "config": {
- "sort-packages": true
- },
- "minimum-stability": "dev",
- "prefer-stable": true
- }
|