composer.json 707 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "web3p/ethereum-tx",
  3. "description": "Ethereum transaction library 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\\EthereumTx\\": "src/"
  18. }
  19. },
  20. "autoload-dev": {
  21. "psr-4": {
  22. "Test\\": "test/"
  23. }
  24. },
  25. "require": {
  26. "PHP": "^7.1|^8.0",
  27. "web3p/rlp": "0.3.4",
  28. "web3p/ethereum-util": "~0.1.3",
  29. "kornrunner/keccak": "~1",
  30. "simplito/elliptic-php": "~1.0.6"
  31. }
  32. }