composer.json 613 B

123456789101112131415161718192021
  1. {
  2. "name": "ircmaxell/password-compat",
  3. "description": "A compatibility library for the proposed simplified password hashing algorithm: https://wiki.php.net/rfc/password_hash",
  4. "keywords": ["password", "hashing"],
  5. "homepage": "https://github.com/ircmaxell/password_compat",
  6. "license": "MIT",
  7. "authors": [
  8. {
  9. "name": "Anthony Ferrara",
  10. "email": "ircmaxell@php.net",
  11. "homepage": "http://blog.ircmaxell.com"
  12. }
  13. ],
  14. "require-dev": {
  15. "phpunit/phpunit": "4.*"
  16. },
  17. "autoload": {
  18. "files": ["lib/password.php"]
  19. }
  20. }