forked from phpseclib/mcrypt_compat
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (39 loc) · 1.04 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
{
"name": "phpseclib/mcrypt_compat",
"description": "PHP 5.x-8.x polyfill for mcrypt extension",
"keywords": [
"mcrypt",
"encryption",
"cryptograpy",
"polyfill"
],
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Jim Wigginton",
"email": "[email protected]",
"homepage": "http://phpseclib.sourceforge.net"
}
],
"support": {
"issues": "https://github.com/phpseclib/mcrypt_compat/issues",
"email": "[email protected]",
"source": "https://github.com/phpseclib/mcrypt_compat"
},
"require": {
"phpseclib/phpseclib": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^5.7|^6.0|^9.4"
},
"suggest": {
"ext-openssl": "Will enable faster cryptographic operations"
},
"autoload": {
"files": ["lib/mcrypt.php"]
},
"provide": {
"ext-mcrypt": "5.6.40"
}
}