composer.json 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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. "blowfish",
  15. "twofish",
  16. "ssh",
  17. "sftp",
  18. "x509",
  19. "x.509",
  20. "asn1",
  21. "asn.1",
  22. "BigInteger"
  23. ],
  24. "homepage": "http://phpseclib.sourceforge.net",
  25. "license": "MIT",
  26. "authors": [
  27. {
  28. "name": "Jim Wigginton",
  29. "email": "terrafrost@php.net",
  30. "role": "Lead Developer"
  31. },
  32. {
  33. "name": "Patrick Monnerat",
  34. "email": "pm@datasphere.ch",
  35. "role": "Developer"
  36. },
  37. {
  38. "name": "Andreas Fischer",
  39. "email": "bantu@phpbb.com",
  40. "role": "Developer"
  41. },
  42. {
  43. "name": "Hans-Jürgen Petrich",
  44. "email": "petrich@tronic-media.com",
  45. "role": "Developer"
  46. },
  47. {
  48. "name": "Graham Campbell",
  49. "email": "graham@alt-three.com",
  50. "role": "Developer"
  51. }
  52. ],
  53. "require": {
  54. "paragonie/constant_time_encoding": "^1|^2",
  55. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  56. "php": ">=5.6.1"
  57. },
  58. "require-dev": {
  59. "phing/phing": "~2.7",
  60. "phpunit/phpunit": "^5.7|^6.0|^9.4",
  61. "squizlabs/php_codesniffer": "~2.0"
  62. },
  63. "suggest": {
  64. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  65. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations.",
  66. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  67. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations."
  68. },
  69. "autoload": {
  70. "files": [
  71. "phpseclib/bootstrap.php"
  72. ],
  73. "psr-4": {
  74. "phpseclib3\\": "phpseclib/"
  75. }
  76. }
  77. }