composer.json 709 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "web3p/ethereum-util",
  3. "description": "A collection of utility functions for Ethereum written in PHP.",
  4. "type": "library",
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "sc0Vu",
  9. "email": "alk03073135@gmail.com"
  10. }
  11. ],
  12. "require-dev": {
  13. "phpunit/phpunit": "~7 | ~8.0"
  14. },
  15. "autoload": {
  16. "psr-4": {
  17. "Web3p\\EthereumUtil\\": "src/"
  18. }
  19. },
  20. "autoload-dev": {
  21. "psr-4": {
  22. "Test\\": "test/"
  23. }
  24. },
  25. "require": {
  26. "PHP": "^7.1 | ^8.0",
  27. "kornrunner/keccak": "~1",
  28. "simplito/elliptic-php": "~1.0.6",
  29. "phpseclib/phpseclib": "~2.0"
  30. }
  31. }