composer.json 634 B

1234567891011121314151617181920212223242526
  1. {
  2. "name": "mattvb91/trontrx",
  3. "description": "Library for interacting with the Tron blockchain through Tron-Grid",
  4. "type": "library",
  5. "require": {
  6. "ext-bcmath": "*",
  7. "guzzlehttp/guzzle": "^6.3",
  8. "ionux/phactor": "1.0.8",
  9. "kornrunner/keccak": "^1.0"
  10. },
  11. "require-dev": {
  12. "phpunit/phpunit": "^7.4",
  13. "php-coveralls/php-coveralls": "^2.1"
  14. },
  15. "autoload": {
  16. "psr-4": {
  17. "mattvb91\\TronTrx\\": "src/"
  18. }
  19. },
  20. "authors": [
  21. {
  22. "name": "Matthias von Bargen",
  23. "email": "matt@mavon.ie"
  24. }
  25. ]
  26. }