composer.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "phpseclib/mcrypt_compat",
  3. "description": "PHP 7.1 polyfill for the mcrypt extension from PHP <= 7.0",
  4. "keywords": [
  5. "mcrypt",
  6. "encryption",
  7. "cryptograpy"
  8. ],
  9. "license": "MIT",
  10. "type": "library",
  11. "authors": [
  12. {
  13. "name": "Jim Wigginton",
  14. "email": "terrafrost@php.net",
  15. "homepage": "http://phpseclib.sourceforge.net"
  16. }
  17. ],
  18. "support": {
  19. "issues": "https://github.com/phpseclib/mcrypt_compat/issues",
  20. "email": "terrafrost@php.net",
  21. "source": "https://github.com/phpseclib/mcrypt_compat"
  22. },
  23. "require": {
  24. "php": ">=5.3.3",
  25. "phpseclib/phpseclib": ">=2.0.11 <3.0.0"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "^4.8.35|^5.7|^6.0"
  29. },
  30. "suggest": {
  31. "ext-openssl": "Will enable faster cryptographic operations"
  32. },
  33. "autoload": {
  34. "files": ["lib/mcrypt.php"]
  35. }
  36. }