composer.json 500 B

123456789101112131415161718
  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. "version": "1.0.3",
  5. "keywords": ["password", "hashing"],
  6. "homepage": "https://github.com/ircmaxell/password_compat",
  7. "license": "MIT",
  8. "authors": [
  9. {
  10. "name": "Anthony Ferrara",
  11. "email": "ircmaxell@php.net",
  12. "homepage": "http://blog.ircmaxell.com"
  13. }
  14. ],
  15. "autoload": {
  16. "files": ["lib/password.php"]
  17. }
  18. }