composer.json 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. {
  2. "name": "paragonie/sodium_compat",
  3. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  4. "keywords": [
  5. "PHP",
  6. "cryptography",
  7. "elliptic curve",
  8. "elliptic curve cryptography",
  9. "Pure-PHP cryptography",
  10. "side-channel resistant",
  11. "Curve25519",
  12. "X25519",
  13. "ECDH",
  14. "Elliptic Curve Diffie-Hellman",
  15. "Ed25519",
  16. "RFC 7748",
  17. "RFC 8032",
  18. "EdDSA",
  19. "Edwards-curve Digital Signature Algorithm",
  20. "ChaCha20",
  21. "Salsa20",
  22. "Xchacha20",
  23. "Xsalsa20",
  24. "Poly1305",
  25. "BLAKE2b",
  26. "public-key cryptography",
  27. "secret-key cryptography",
  28. "AEAD",
  29. "Chapoly",
  30. "Salpoly",
  31. "ChaCha20-Poly1305",
  32. "XSalsa20-Poly1305",
  33. "XChaCha20-Poly1305",
  34. "encryption",
  35. "authentication",
  36. "libsodium"
  37. ],
  38. "license": "ISC",
  39. "authors": [
  40. {
  41. "name": "Paragon Initiative Enterprises",
  42. "email": "security@paragonie.com"
  43. },
  44. {
  45. "name": "Frank Denis",
  46. "email": "jedisct1@pureftpd.org"
  47. }
  48. ],
  49. "autoload": {
  50. "files": ["autoload.php"]
  51. },
  52. "require": {
  53. "php": "^5.2.4|^5.3|^5.4|^5.5|^5.6|^7|^8",
  54. "paragonie/random_compat": ">=1"
  55. },
  56. "require-dev": {
  57. "phpunit/phpunit": "^3|^4|^5|^6|^7|^8|^9"
  58. },
  59. "scripts": {
  60. "test": "phpunit"
  61. },
  62. "suggest": {
  63. "ext-libsodium": "PHP < 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security.",
  64. "ext-sodium": "PHP >= 7.0: Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  65. }
  66. }