Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
{
2
  "name": "paragonie/constant_time_encoding",
3
  "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
4
  "keywords": [
5
    "base64", "encoding", "rfc4648", "base32", "base16", "hex", "bin2hex", "hex2bin", "base64_encode", "base64_decode", "base32_encode", "base32_decode"
6
  ],
7
  "license": "MIT",
8
  "type": "library",
9
  "authors": [
10
      {
11
        "name":     "Paragon Initiative Enterprises",
12
        "email":    "security@paragonie.com",
13
        "homepage": "https://paragonie.com",
14
        "role":     "Maintainer"
15
      },
16
      {
17
        "name":     "Steve 'Sc00bz' Thomas",
18
        "email":    "steve@tobtu.com",
19
        "homepage": "https://www.tobtu.com",
20
        "role":     "Original Developer"
21
      }
22
  ],
23
  "support": {
24
    "issues":   "https://github.com/paragonie/constant_time_encoding/issues",
25
    "email":    "info@paragonie.com",
26
    "source":   "https://github.com/paragonie/constant_time_encoding"
27
  },
28
  "require": {
29
    "php": "^7"
30
  },
31
  "require-dev": {
32
    "phpunit/phpunit": "^6",
33
    "vimeo/psalm": "^0.3|^"
34
  },
35
  "autoload": {
36
    "psr-4": {
37
      "ParagonIE\\ConstantTime\\": "src/"
38
    }
39
  }
40
}