composer.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "iexbase/tron-api",
  3. "description": "A PHP API for interacting with Tron (Trx)",
  4. "license": "MIT",
  5. "type": "library",
  6. "homepage": "https://github.com/iexbase/tron-api",
  7. "authors": [
  8. {
  9. "name": "Shamsudin Serderov",
  10. "email": "steein.shamsudin@gmail.com"
  11. }
  12. ],
  13. "keywords": [
  14. "iexbase",
  15. "tron-lib",
  16. "tron-php",
  17. "tron-api",
  18. "tron-rest-api"
  19. ],
  20. "require": {
  21. "php": "^7.4",
  22. "comely-io/data-types": "^1.0",
  23. "guzzlehttp/guzzle": "^7.0",
  24. "iexbase/web3.php": "^2.0.1",
  25. "kornrunner/secp256k1": "^0.1.2",
  26. "simplito/elliptic-php": "^1.0",
  27. "ext-json": "*",
  28. "ext-bcmath": "*"
  29. },
  30. "require-dev": {
  31. "phpunit/phpunit": "^6.0"
  32. },
  33. "autoload": {
  34. "psr-4": {
  35. "IEXBase\\TronAPI\\": "src"
  36. }
  37. },
  38. "autoload-dev": {
  39. "psr-4": {
  40. "IEXBase\\TronAPI\\Test\\": "tests"
  41. }
  42. },
  43. "config": {
  44. "sort-packages": true
  45. },
  46. "minimum-stability": "dev",
  47. "prefer-stable": true
  48. }