composer.json 932 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "web3p/web3.php",
  3. "description": "Ethereum web3 interface.",
  4. "type": "library",
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "sc0Vu",
  9. "email": "alk03073135@gmail.com"
  10. }
  11. ],
  12. "require": {
  13. "guzzlehttp/guzzle": "^6.3|^7.0",
  14. "PHP": "^7.2|^8.0",
  15. "kornrunner/keccak": "~1.0",
  16. "phpseclib/phpseclib": "~2.0.30",
  17. "ext-mbstring": "*",
  18. "react/http": "^1.6.0",
  19. "react/async": "^4.0.0|^3.1.0",
  20. "react/promise": "^2.9.0",
  21. "react/event-loop": "^1.2",
  22. "react/socket": "^1.13",
  23. "ratchet/pawl": "^0.4.1",
  24. "react/promise-timer": "^1.10"
  25. },
  26. "require-dev": {
  27. "phpunit/phpunit": "~8.0|~9.0"
  28. },
  29. "autoload": {
  30. "psr-4": {
  31. "Web3\\": "src/"
  32. }
  33. },
  34. "autoload-dev": {
  35. "psr-4": {
  36. "Test\\": "test/"
  37. }
  38. }
  39. }