composer.json 715 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "dzarezenko/etherscan-api",
  3. "description": "PHP wrapper for the Etherscan API.",
  4. "type": "library",
  5. "keywords": ["etherscan", "api"],
  6. "homepage": "https://github.com/dzarezenko/etherscan-api",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Dmytro Zarezenko",
  11. "email": "dmytro.zarezenko@gmail.com",
  12. "homepage": "https://github.com/dzarezenko",
  13. "role": "Development"
  14. }
  15. ],
  16. "support": {
  17. "email": "dmytro.zarezenko@gmail.com"
  18. },
  19. "minimum-stability": "dev",
  20. "require": {
  21. "php": ">=5.4.0"
  22. },
  23. "autoload": {
  24. "psr-4": {
  25. "etherscan\\api\\": "src/"
  26. }
  27. }
  28. }