Blame view

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