composer.json 610 B

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "web3p/rlp",
  3. "description": "Recursive Length Prefix Encoding in PHP.",
  4. "type": "library",
  5. "license": "MIT",
  6. "authors": [
  7. {
  8. "name": "sc0Vu",
  9. "email": "alk03073135@gmail.com"
  10. }
  11. ],
  12. "minimum-stability": "dev",
  13. "require-dev": {
  14. "phpunit/phpunit": "~7|~8.0"
  15. },
  16. "autoload": {
  17. "psr-4": {
  18. "Web3p\\RLP\\": "src/"
  19. }
  20. },
  21. "autoload-dev": {
  22. "psr-4": {
  23. "Test\\": "test/"
  24. }
  25. },
  26. "require": {
  27. "PHP": "^7.1 | ^8.0",
  28. "ext-mbstring": "*"
  29. }
  30. }