-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
97 lines (97 loc) · 2.72 KB
/
composer.json
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "spomky-labs/pki-framework",
"description": "A PHP framework for managing Public Key Infrastructures. It comprises X.509 public key certificates, attribute certificates, certification requests and certification path validation.",
"homepage": "https://github.com/spomky-labs/pki-framework",
"license": "MIT",
"type": "library",
"keywords": [
"x509",
"x.509",
"certificate",
"attribute certificate",
"ac",
"certification request",
"csr",
"pem",
"public key",
"private key",
"certificate",
"cryptography",
"asn1",
"algorithm identifier",
"rsa",
"ec",
"public key",
"private key",
"signature",
"pkcs",
"cryptography",
"encrypt",
"decrypt",
"sign",
"verify",
"asn1",
"asn.1",
"x690",
"x.690",
"der"
],
"authors": [
{
"name": "Joni Eskelinen",
"email": "[email protected]",
"role": "Original developer"
},
{
"name": "Florent Morselli",
"email": "[email protected]",
"role": "Spomky-Labs PKI Framework developer"
}
],
"require": {
"php": ">=8.1",
"ext-mbstring": "*",
"brick/math": "^0.10|^0.11|^0.12"
},
"require-dev": {
"ext-gmp": "*",
"ext-openssl": "*",
"ekino/phpstan-banned-code": "^1.0",
"infection/infection": "^0.28",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-beberlei-assert": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-phpunit": "^1.1",
"phpstan/phpstan-strict-rules": "^1.3",
"rector/rector": "^1.0",
"roave/security-advisories": "dev-latest",
"symfony/phpunit-bridge": "^6.4|^7.0",
"symfony/string": "^6.4|^7.0",
"symfony/var-dumper": "^6.4|^7.0",
"symplify/easy-coding-standard": "^12.0",
"phpunit/phpunit": "^10.1|^11.0"
},
"suggest": {
"ext-openssl": "For OpenSSL based cyphering",
"ext-gmp": "For better performance (or BCMath)",
"ext-bcmath": "For better performance (or GMP)"
},
"autoload": {
"psr-4": {
"SpomkyLabs\\Pki\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SpomkyLabs\\Pki\\Test\\": "tests/"
}
},
"config": {
"allow-plugins": {
"infection/extension-installer": true,
"phpstan/extension-installer": true
}
}
}