composer.json 977 B

1234567891011121314151617181920212223242526272829303132333435
  1. {
  2. "name": "defuse/php-encryption",
  3. "description": "Secure PHP Encryption Library",
  4. "license": "MIT",
  5. "keywords": ["security", "encryption", "AES", "openssl", "cipher", "cryptography", "symmetric key cryptography", "crypto", "encrypt", "authenticated encryption"],
  6. "authors": [
  7. {
  8. "name": "Taylor Hornby",
  9. "email": "taylor@defuse.ca",
  10. "homepage": "https://defuse.ca/"
  11. },
  12. {
  13. "name": "Scott Arciszewski",
  14. "email": "info@paragonie.com",
  15. "homepage": "https://paragonie.com"
  16. }
  17. ],
  18. "autoload": {
  19. "psr-4": {
  20. "Defuse\\Crypto\\": "src"
  21. }
  22. },
  23. "require": {
  24. "paragonie/random_compat": ">= 2",
  25. "ext-openssl": "*",
  26. "php": ">=5.4.0"
  27. },
  28. "require-dev": {
  29. "phpunit/phpunit": "^4|^5",
  30. "nikic/php-parser": "^2.0|^3.0|^4.0"
  31. },
  32. "bin": [
  33. "bin/generate-defuse-key"
  34. ]
  35. }