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
|
{
"name": "remi/xpass",
"type": "php-ext",
"license": "BSD-3-Clause",
"description": "Extended password extension",
"keywords": [
"password",
"sha512",
"yescrypt",
"sm3crypt",
"sm3yescrypt",
"crypt",
"libxcrypt"
],
"authors": [
{
"name": "Remi Collet",
"email": "remi@php.net",
"role": "lead"
}
],
"support": {
"issues": "https://github.com/remicollet/php-xpass/issues",
"source": "https://github.com/remicollet/php-xpass",
"docs": "https://www.php.net/xpass"
},
"require": {
"php": ">= 8.0.0"
},
"php-ext": {
"extension-name": "xpass",
"configure-options": [
{
"name": "enable-xpass",
"description": "Enable xpass support"
}, {
"name": "with-xpass-dlopen",
"description": "dlopen libcrypt library at runtime (workaround for MUSL)",
"needs-value": true
}
]
}
}
|