composer.json 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  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.1",
  22. "guzzlehttp/guzzle": "^6.3 | ^7.0",
  23. "kornrunner/secp256k1": "^0.1.2",
  24. "sc0vu/web3.php": "^0.1.4",
  25. "simplito/elliptic-php": "^1.0"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "^6.0"
  29. },
  30. "autoload": {
  31. "psr-4": {
  32. "IEXBase\\TronAPI\\": "src"
  33. }
  34. },
  35. "autoload-dev": {
  36. "psr-4": {
  37. "IEXBase\\TronAPI\\Test\\": "tests"
  38. }
  39. },
  40. "config": {
  41. "sort-packages": true
  42. },
  43. "minimum-stability": "dev",
  44. "prefer-stable": true
  45. }