composer.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "phpseclib/phpseclib",
  3. "type": "library",
  4. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  5. "keywords": [
  6. "security",
  7. "crypto",
  8. "cryptography",
  9. "encryption",
  10. "signature",
  11. "signing",
  12. "rsa",
  13. "aes",
  14. "ssh",
  15. "sftp",
  16. "x509",
  17. "x.509",
  18. "asn1",
  19. "asn.1",
  20. "BigInteger"
  21. ],
  22. "homepage": "http://phpseclib.sourceforge.net",
  23. "license": "MIT",
  24. "authors": [
  25. {
  26. "name": "Jim Wigginton",
  27. "email": "terrafrost@php.net",
  28. "role": "Developer"
  29. }
  30. ],
  31. "require": {
  32. "php": ">=5.0.0"
  33. },
  34. "suggest": {
  35. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a wide variety of cryptographic operations.",
  36. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  37. "pear-pear/PHP_Compat": "Install PHP_Compat to get phpseclib working on PHP >= 4.3.3."
  38. },
  39. "include-path": ["phpseclib/"],
  40. "autoload": {
  41. "psr-0": {
  42. "Crypt": "phpseclib/",
  43. "File": "phpseclib/",
  44. "Math": "phpseclib/",
  45. "Net": "phpseclib/"
  46. }
  47. }
  48. }