composer.json 1.1 KB

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