composer.json 622 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "bitwasp/bech32",
  3. "description": "Pure (no dependencies) implementation of bech32",
  4. "type": "library",
  5. "homepage": "https://github.com/bit-wasp/bech32",
  6. "license": "Unlicense",
  7. "authors": [
  8. {
  9. "name": "Thomas Kerin",
  10. "homepage": "https://thomaskerin.io",
  11. "role": "Author"
  12. }
  13. ],
  14. "autoload": {
  15. "psr-4": {
  16. "BitWasp\\Bech32\\": "src/"
  17. },
  18. "files": ["src/bech32.php"]
  19. },
  20. "autoload-dev": {
  21. "psr-4": {
  22. "BitWasp\\Test\\Bech32\\": "test/"
  23. }
  24. },
  25. "require-dev": {
  26. "phpunit/phpunit": "^5.4.0",
  27. "squizlabs/php_codesniffer": "^2.0.0"
  28. }
  29. }