composer.json 545 B

123456789101112131415161718192021222324
  1. {
  2. "name": "stephenhill/base58",
  3. "description": "Base58 Encoding and Decoding Library for PHP",
  4. "require-dev": {
  5. "phpunit/phpunit": "4.*",
  6. "athletic/athletic": "~0.1"
  7. },
  8. "license": "MIT",
  9. "authors": [
  10. {
  11. "name": "Stephen Hill",
  12. "email": "stephen@gatekiller.co.uk"
  13. }
  14. ],
  15. "config": {
  16. "bin-dir": "bin"
  17. },
  18. "autoload": {
  19. "psr-4": {
  20. "StephenHill\\": "src/",
  21. "StephenHill\\Benchmarks\\": "benchmarks/"
  22. }
  23. }
  24. }